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.

monad.d.ts 435B

123456789
  1. interface PropertiesObject {
  2. [key: string]: PropertyDescriptor;
  3. }
  4. export default function WebDriver(options: Record<string, any>, modifier?: Function, propertiesObject?: PropertiesObject): {
  5. (this: void, sessionId: string, commandWrapper?: Function | undefined): any;
  6. lift(name: string, func: Function, proto: Record<string, any>, origCommand?: Function | undefined): void;
  7. };
  8. export {};
  9. //# sourceMappingURL=monad.d.ts.map