downloaded_binary.d.ts 405 B

1234567891011121314
  1. import { Binary, BinaryUrl } from '../binaries';
  2. /**
  3. * The downloaded binary is the binary with the list of versions downloaded.
  4. */
  5. export declare class DownloadedBinary extends Binary {
  6. versions: string[];
  7. binary: Binary;
  8. constructor(binary: Binary);
  9. id(): string;
  10. prefix(): string;
  11. suffix(): string;
  12. getUrl(): Promise<BinaryUrl>;
  13. getVersionList(): Promise<string[]>;
  14. }