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.

newSession.d.ts 480B

123456789101112131415
  1. /// <reference types="webdriver" />
  2. /// <reference types="node" />
  3. import type DevToolsDriver from '../devtoolsdriver';
  4. export default function newSession(this: DevToolsDriver, { capabilities }: {
  5. capabilities: WebDriver.Capabilities;
  6. }): Promise<{
  7. sessionId: string;
  8. capabilities: {
  9. browserName: string;
  10. browserVersion: string;
  11. platformName: NodeJS.Platform;
  12. platformVersion: string;
  13. };
  14. }>;
  15. //# sourceMappingURL=newSession.d.ts.map