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.

constant.d.ts 719B

123456789101112131415
  1. /// <reference types="webdriverio/webdriverio-core" />
  2. /// <reference types="webdriverio" />
  3. /// <reference types="@wdio/cucumber-framework" />
  4. interface FormattedTouchAction extends Omit<WebdriverIO.TouchAction, 'element'> {
  5. element?: string;
  6. }
  7. interface FormattedActions {
  8. action: string;
  9. options?: FormattedTouchAction;
  10. }
  11. export declare const formatArgs: (scope: WebdriverIO.BrowserObject | WebdriverIO.Element, actions: WebdriverIO.TouchActions[]) => FormattedActions[];
  12. export declare const validateParameters: (params: FormattedActions) => void;
  13. export declare const touchAction: (this: WebdriverIO.Element, actions: WebdriverIO.TouchActions) => void;
  14. export {};
  15. //# sourceMappingURL=constant.d.ts.map