convex
Version:
Client for the Convex Cloud
28 lines • 923 B
TypeScript
import { Context } from "../../bundler/context.js";
export declare function envSetInDeployment(ctx: Context, deployment: {
deploymentUrl: string;
adminKey: string;
deploymentNotice: string;
}, originalName: string, originalValue: string | undefined): Promise<void>;
export declare function envGetInDeployment(ctx: Context, deployment: {
deploymentUrl: string;
adminKey: string;
}, name: string): Promise<void>;
export declare function envRemoveInDeployment(ctx: Context, deployment: {
deploymentUrl: string;
adminKey: string;
deploymentNotice: string;
}, name: string): Promise<void>;
export declare function envListInDeployment(ctx: Context, deployment: {
deploymentUrl: string;
adminKey: string;
}): Promise<void>;
export type EnvVarChange = {
name: string;
value?: string;
};
export type EnvVar = {
name: string;
value: string;
};
//# sourceMappingURL=env.d.ts.map