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.

index.d.ts 677B

1234567891011
  1. import { DEFAULTS } from './constants';
  2. import { getPrototype } from './utils';
  3. import type { Options, Client, AttachOptions } from './types';
  4. export default class WebDriver {
  5. static newSession(options?: Options, modifier?: (...args: any[]) => any, userPrototype?: {}, customCommandWrapper?: (...args: any[]) => any): Promise<Client>;
  6. static attachToSession(options?: AttachOptions, modifier?: (...args: any[]) => any, userPrototype?: {}, commandWrapper?: (...args: any[]) => any): Client;
  7. static reloadSession(instance: Client): Promise<string>;
  8. static get WebDriver(): typeof WebDriver;
  9. }
  10. export { getPrototype, DEFAULTS };
  11. //# sourceMappingURL=index.d.ts.map