Files
Remote-Control-Center/mc_test/node_modules/app-builder-lib/out/publish/updateInfoBuilder.d.ts
2025-11-25 09:56:15 +03:00

11 lines
499 B
TypeScript
Executable File

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>;