convex
Version:
Client for the Convex Cloud
17 lines • 645 B
TypeScript
import { Context } from "../../bundler/context.js";
import { ProjectConfig } from "./config.js";
import { CleanupDeploymentFunc } from "./deployment.js";
export type PushOptions = {
adminKey: string;
verbose: boolean;
dryRun: boolean;
typecheck: "enable" | "try" | "disable";
debug: boolean;
debugBundlePath?: string;
codegen: boolean;
url: string;
writePushRequest?: string;
cleanupHandle: CleanupDeploymentFunc | null;
};
export declare function runNonComponentsPush(ctx: Context, options: PushOptions, configPath: string, projectConfig: ProjectConfig): Promise<void>;
//# sourceMappingURL=push.d.ts.map