convex
Version:
Client for the Convex Cloud
17 lines • 592 B
TypeScript
import { Context } from "../../../bundler/context.js";
export declare function ensureBackendBinaryDownloaded(ctx: Context, version: {
kind: "latest";
} | {
kind: "version";
version: string;
}): Promise<{
binaryPath: string;
version: string;
}>;
/**
* Finds the latest version of the convex backend that has a binary that works
* on this platform.
*/
export declare function findLatestVersionWithBinary(ctx: Context): Promise<string>;
export declare function ensureDashboardDownloaded(ctx: Context, version: string): Promise<void>;
//# sourceMappingURL=download.d.ts.map