9 lines
455 B
TypeScript
9 lines
455 B
TypeScript
|
|
interface PropertiesObject {
|
||
|
|
[key: string | symbol]: PropertyDescriptor;
|
||
|
|
}
|
||
|
|
export default function WebDriver(options: object, modifier?: Function, propertiesObject?: PropertiesObject): {
|
||
|
|
(this: void, sessionId: string, commandWrapper?: Function, elementCmdImplicitWaitExclusionList?: string[]): any;
|
||
|
|
lift(name: string, func: Function, proto: Record<string, any>, origCommand?: Function): void;
|
||
|
|
};
|
||
|
|
export {};
|
||
|
|
//# sourceMappingURL=monad.d.ts.map
|