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.

firefox.d.ts 348B

1234567891011121314
  1. export interface Priorities {
  2. regex: RegExp;
  3. weight: number;
  4. }
  5. declare function darwin(): string[];
  6. declare function linux(): string[];
  7. declare function win32(): string[];
  8. declare const _default: {
  9. darwin: typeof darwin;
  10. linux: typeof linux;
  11. win32: typeof win32;
  12. };
  13. export default _default;
  14. //# sourceMappingURL=firefox.d.ts.map