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.

chrome-finder.d.ts 590B

1234567891011121314
  1. /**
  2. * check for MacOS default app paths first to avoid waiting for the slow lsregister command
  3. */
  4. export declare function darwinFast(): string | undefined;
  5. export declare function darwin(): string[];
  6. /**
  7. * Look for linux executables in 3 ways
  8. * 1. Look into CHROME_PATH env variable
  9. * 2. Look into the directories where .desktop are saved on gnome based distro's
  10. * 3. Look for google-chrome-stable & google-chrome executables by using the which command
  11. */
  12. export declare function linux(): string[];
  13. export declare function wsl(): string[];
  14. export declare function win32(): string[];