convex
Version:
Client for the Convex Cloud
15 lines • 475 B
TypeScript
import { DeploymentType } from "./api.js";
import { Context } from "./context.js";
export declare type PushOptions = {
adminKey: string;
verbose: boolean;
dryRun: boolean;
typecheck: "enable" | "try" | "disable";
debug: boolean;
debugBundlePath?: string;
codegen: boolean;
deploymentType: DeploymentType;
url: string;
};
export declare function runPush(ctx: Context, options: PushOptions): Promise<void>;
//# sourceMappingURL=push.d.ts.map