UNPKG

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