UNPKG

309 BTypeScriptView Raw
1import { ImageSnapshotConfig } from './config';
2export declare const imageSnapshot: (customConfig?: Partial<ImageSnapshotConfig>) => {
3 ({ context }: any): Promise<void>;
4 timeout: number;
5 afterAll: () => Promise<void>;
6 beforeAll: {
7 (): Promise<void>;
8 timeout: number;
9 };
10};