@wdio/types
Version:
Utility package providing type information for a variety of WebdriverIO interfaces
8 lines • 352 B
TypeScript
export type Instances = WebdriverIO.Browser | WebdriverIO.MultiRemoteBrowser;
export type CustomCommandOptions<IsElement extends boolean = false> = {
attachToElement?: IsElement;
proto?: Record<string, unknown>;
instances?: Record<string, Instances>;
disableElementImplicitWait?: boolean;
};
//# sourceMappingURL=CustomCommands.d.ts.map