web3browser.io/src/backend/types.ts

13 lines
282 B
TypeScript
Raw Normal View History

2023-10-11 13:46:46 +00:00
export interface ContentProvider {
supports: (uri: string) => boolean;
fetchContent: (
uri: string,
path: string,
query?: string,
) => Promise<Response>;
}
export interface ContentFilter {
process: (response: Response, mineType: string) => Promise<Response>;
}