index.d.ts 1.2 KB

1234567891011121314
  1. export { CancellationToken, CancellationError } from "./CancellationToken";
  2. export { HttpError, createHttpError, HttpExecutor, DownloadOptions, DigestTransform, RequestHeaders, safeGetHeader, configureRequestOptions, configureRequestOptionsFromUrl, safeStringifyJson, parseJson } from "./httpExecutor";
  3. export { BintrayOptions, GenericServerOptions, GithubOptions, PublishConfiguration, S3Options, SpacesOptions, BaseS3Options, getS3LikeProviderBaseUrl, Publish, githubUrl, PublishProvider, AllPublishOptions } from "./publishOptions";
  4. export { UpdateInfo, UpdateFileInfo, WindowsUpdateInfo, BlockMapDataHolder, PackageFileInfo, ReleaseNoteInfo } from "./updateInfo";
  5. export { parseDn } from "./rfc2253Parser";
  6. export { UUID } from "./uuid";
  7. export { ProgressCallbackTransform, ProgressInfo } from "./ProgressCallbackTransform";
  8. export { parseXml, XElement } from "./xml";
  9. export { BlockMap } from "./blockMapApi";
  10. export declare const CURRENT_APP_INSTALLER_FILE_NAME = "__installer.exe";
  11. export declare const CURRENT_APP_PACKAGE_FILE_NAME = "__package.7z";
  12. export declare function asArray<T>(v: null | undefined | T | Array<T>): Array<T>;
  13. export declare function newError(message: string, code: string): Error;