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.

utils.d.ts 1.1KB

12345678910111213141516171819202122
  1. /// <reference types="webdriverio/webdriverio-core" />
  2. export declare function overwriteElementCommands(propertiesObject: {
  3. '__elementOverrides__'?: {
  4. value: any;
  5. };
  6. [key: string]: any;
  7. }): void;
  8. export declare function commandCallStructure(commandName: string, args: any[]): string;
  9. export declare function transformCommandLogResult(result: {
  10. file?: string;
  11. }): "\"<Screenshot[base64]>\"" | {
  12. file?: string | undefined;
  13. };
  14. export declare function isValidParameter(arg: any, expectedType: string): boolean;
  15. export declare function getArgumentType(arg: any): "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function" | "null";
  16. export declare function safeRequire(name: string): WebdriverIO.ServicePlugin | null;
  17. export declare function isFunctionAsync(fn: Function): boolean;
  18. export declare function filterSpecArgs(args: any[]): any[];
  19. export declare function isBase64(str: string): boolean;
  20. export declare const canAccess: (file: string) => boolean;
  21. export declare const sleep: (ms?: number) => Promise<unknown>;
  22. //# sourceMappingURL=utils.d.ts.map