request.d.ts 223 B

1234567
  1. interface IncludeFile {
  2. ok: boolean;
  3. status: number;
  4. html: string;
  5. }
  6. export declare const requestInclude: (src: string, mode?: 'cors' | 'no-cors' | 'same-origin') => Promise<IncludeFile | undefined>;
  7. export {};