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