Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

click.d.ts 293B

123456789
  1. /// <reference types="webdriverio/webdriverio-core" />
  2. declare type ClickOptions = {
  3. button?: number | string;
  4. x?: number;
  5. y?: number;
  6. };
  7. export default function click(this: WebdriverIO.Element, options?: ClickOptions): Promise<void>;
  8. export {};
  9. //# sourceMappingURL=click.d.ts.map