UNPKG

499 BTypeScriptView Raw
1import { PublishConfiguration, UpdateInfo } from "builder-util-runtime";
2import { Packager } from "../packager";
3import { PlatformPackager } from "../platformPackager";
4export interface UpdateInfoFileTask {
5 readonly file: string;
6 readonly info: UpdateInfo;
7 readonly publishConfiguration: PublishConfiguration;
8 readonly packager: PlatformPackager<any>;
9}
10export declare function writeUpdateInfoFiles(updateInfoFileTasks: Array<UpdateInfoFileTask>, packager: Packager): Promise<void>;