Spaces:
Configuration error
Configuration error
File size: 518 Bytes
5641073 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
export declare const getEvent: (request: Request) => any;
export declare const mockKV: (store: any) => {
get: (path: string) => any;
};
export declare const mockManifest: () => string;
export declare const mockCaches: () => {
default: {
match(key: any): Promise<any>;
put(key: any, val: Response): Promise<void>;
};
};
export declare function mockRequestScope(): void;
export declare function mockGlobalScope(): void;
export declare const sleep: (milliseconds: number) => Promise<unknown>;
|