@wdio/image-comparison-core
Version:
Image comparison core module for @wdio/visual-service - WebdriverIO visual testing framework
29 lines • 832 B
TypeScript
import type { DefaultOptions } from '../helpers/options.interfaces.js';
import type { CheckFullPageMethodOptions, SaveFullPageMethodOptions } from './fullPage.interfaces.js';
export interface SaveTabbableOptions {
wic: DefaultOptions;
method: SaveFullPageMethodOptions;
}
export interface CheckTabbableOptions {
wic: DefaultOptions;
method: CheckFullPageMethodOptions;
}
export interface TabbableOptions {
circle?: CircleOptions;
line?: LineOptions;
}
export interface CircleOptions {
backgroundColor?: string;
borderColor?: string;
borderWidth?: number;
fontColor?: string;
fontFamily?: string;
fontSize?: number;
size?: number;
showNumber?: boolean;
}
export interface LineOptions {
color?: string;
width?: number;
}
//# sourceMappingURL=tabbable.interfaces.d.ts.map