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.

performActions.d.ts 518B

12345678910111213141516171819202122
  1. import type DevToolsDriver from '../devtoolsdriver';
  2. interface Action {
  3. duration?: number;
  4. type: string;
  5. value?: string;
  6. x?: number;
  7. y?: number;
  8. button?: number;
  9. origin?: any;
  10. }
  11. interface ActionsParameter {
  12. type?: string;
  13. actions: Action[];
  14. parameters?: {
  15. pointerType?: string;
  16. };
  17. }
  18. export default function performActions(this: DevToolsDriver, { actions }: {
  19. actions: ActionsParameter[];
  20. }): Promise<void>;
  21. export {};
  22. //# sourceMappingURL=performActions.d.ts.map