@wdio/image-comparison-core
Version:
Image comparison core module for @wdio/visual-service - WebdriverIO visual testing framework
16 lines • 726 B
TypeScript
import type { BaseMobileWebScreenshotOptions, BaseWebScreenshotOptions, Folders } from '../base.interfaces.js';
import type { DefaultOptions } from '../helpers/options.interfaces.js';
import type { CheckMethodOptions } from './check.interfaces.js';
export interface SaveScreenOptions {
wic: DefaultOptions;
method: SaveScreenMethodOptions;
}
export interface SaveScreenMethodOptions extends Partial<Folders>, BaseWebScreenshotOptions, BaseMobileWebScreenshotOptions {
}
export interface CheckScreenMethodOptions extends SaveScreenMethodOptions, CheckMethodOptions {
}
export interface CheckScreenOptions {
wic: DefaultOptions;
method: CheckScreenMethodOptions;
}
//# sourceMappingURL=screen.interfaces.d.ts.map