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.

index.d.ts 804B

123456789101112131415161718
  1. import { ElectronDownloadRequestOptions, ElectronPlatformArtifactDetailsWithDefaults } from './types';
  2. export { getHostArch } from './utils';
  3. export { initializeProxy } from './proxy';
  4. export * from './types';
  5. /**
  6. * Downloads an artifact from an Electron release and returns an absolute path
  7. * to the downloaded file.
  8. *
  9. * @param artifactDetails - The information required to download the artifact
  10. */
  11. export declare function downloadArtifact(_artifactDetails: ElectronPlatformArtifactDetailsWithDefaults): Promise<string>;
  12. /**
  13. * Downloads a specific version of Electron and returns an absolute path to a
  14. * ZIP file.
  15. *
  16. * @param version - The version of Electron you want to download
  17. */
  18. export declare function download(version: string, options?: ElectronDownloadRequestOptions): Promise<string>;