17 lines
318 B
TypeScript
17 lines
318 B
TypeScript
export interface ContentProvider {
|
|
supports: (uri: string) => boolean;
|
|
fetchContent: (
|
|
uri: string,
|
|
path: string,
|
|
query?: string,
|
|
) => Promise<Response>;
|
|
}
|
|
|
|
export interface ContentFilter {
|
|
process: (
|
|
response: Response,
|
|
mineType: string,
|
|
requestor: string,
|
|
) => Promise<Response>;
|
|
}
|