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 630B

12345678910
  1. import WebDriver from 'webdriver';
  2. import SevereServiceErrorImport from './utils/SevereServiceError';
  3. import type { Options, MultiRemoteOptions } from './types';
  4. export declare const remote: (params?: Options, remoteModifier?: Function | undefined) => Promise<any>;
  5. export declare const attach: (params: WebDriver.AttachSessionOptions) => Promise<WebDriver.Client>;
  6. export declare const multiremote: (params: MultiRemoteOptions, { automationProtocol }?: {
  7. automationProtocol?: string | undefined;
  8. }) => Promise<any>;
  9. export declare const SevereServiceError: typeof SevereServiceErrorImport;
  10. //# sourceMappingURL=index.d.ts.map