convex
Version:
Client for the Convex Cloud
25 lines • 980 B
TypeScript
import { Context } from "../bundler/context.js";
import { DeploymentName } from "./lib/api.js";
type DeploymentCredentials = {
url: string;
adminKey: string;
};
export declare function initOrReinitForDeprecatedCommands(ctx: Context, cmdOptions: {
team?: string | undefined;
project?: string | undefined;
url?: string | undefined;
adminKey?: string | undefined;
}): Promise<void>;
export declare function deploymentCredentialsOrConfigure(ctx: Context, chosenConfiguration: "new" | "existing" | "ask" | null, cmdOptions: {
prod: boolean;
team?: string | undefined;
project?: string | undefined;
url?: string | undefined;
adminKey?: string | undefined;
}): Promise<DeploymentCredentials & {
deploymentName?: DeploymentName;
}>;
export declare function promptToInitWithProjects(): Promise<"new" | "existing">;
export declare function promptToReconfigure(): Promise<"new" | "existing">;
export {};
//# sourceMappingURL=configure.d.ts.map