thedesk/app/node_modules/app-builder-lib/out/publish/updateInfoBuilder.d.ts

11 lines
499 B
TypeScript
Raw Normal View History

2019-09-13 00:38:13 +10:00
import { PublishConfiguration, UpdateInfo } from "builder-util-runtime";
import { Packager } from "../packager";
import { PlatformPackager } from "../platformPackager";
export interface UpdateInfoFileTask {
readonly file: string;
readonly info: UpdateInfo;
readonly publishConfiguration: PublishConfiguration;
readonly packager: PlatformPackager<any>;
}
export declare function writeUpdateInfoFiles(updateInfoFileTasks: Array<UpdateInfoFileTask>, packager: Packager): Promise<void>;