@hot-updater/plugin-core
Version:
React Native OTA solution for self-hosted
13 lines (12 loc) • 357 B
TypeScript
export declare const createZipTargetFiles: ({ outfile, targetFiles, }: {
targetFiles: {
path: string;
name: string;
}[];
outfile: string;
}) => Promise<string>;
export declare const createZip: ({ outfile, targetDir, excludeExts, }: {
targetDir: string;
outfile: string;
excludeExts?: string[];
}) => Promise<string>;