DefinitelyTyped/types/cypress-image-snapshot/command.d.ts
Alex Kessock a9fd0c12aa Add types for cypress-image-snapshot (#41222)
* Add types for cypress-image-snapshot

* Add optional parameters to matchImageSnapshot
2019-12-27 09:35:01 -06:00

7 lines
252 B
TypeScript

import { Options } from './index.d';
declare function addMatchImageSnapshotCommand(nameOrOptions?: string | Options): void;
declare function addMatchImageSnapshotCommand(name: string, options: Options): void;
export { addMatchImageSnapshotCommand };