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.

shim.d.ts 980B

1234567891011121314
  1. declare let hasWdioSyncSupport: boolean;
  2. declare let runSync: (this: unknown, fn: Function, repeatTest: any, args: unknown[]) => (resolve: Function, reject: Function) => unknown;
  3. interface Retries {
  4. limit: number;
  5. attempts: number;
  6. }
  7. declare let executeHooksWithArgs: <T>(hookName: string, hooks?: Function | Function[], args?: any[]) => Promise<(Error | T)[]>;
  8. declare let runFnInFiberContext: (fn: Function) => (this: any, ...args: any[]) => Promise<any>;
  9. declare let wrapCommand: <T>(commandName: string, fn: Function) => (...args: any) => Promise<T>;
  10. declare function executeSyncFn(this: any, fn: Function, retries: Retries, args?: any[]): Promise<unknown>;
  11. declare function executeAsync(this: any, fn: Function, retries: Retries, args?: any[]): Promise<unknown>;
  12. declare let executeSync: typeof executeSyncFn;
  13. export { executeHooksWithArgs, runFnInFiberContext, wrapCommand, hasWdioSyncSupport, executeSync, executeAsync, runSync };
  14. //# sourceMappingURL=shim.d.ts.map