hot-updater
Version:
React Native OTA solution for self-hosted
12 lines (11 loc) • 347 B
TypeScript
import { type Platform } from "@hot-updater/plugin-core";
export interface DeployOptions {
bundleOutputPath?: string;
channel: string;
forceUpdate: boolean;
interactive: boolean;
message?: string;
platform?: Platform;
targetAppVersion?: string;
}
export declare const deploy: (options: DeployOptions) => Promise<void>;