hasura-console
Version:
A package that automatically installs and wraps Hasura CLI binary in isolated manner
12 lines (11 loc) • 387 B
TypeScript
export declare const versionFromPackageJson: any;
export declare function tagFromVersion(version: string): string;
interface InstallOptions {
version?: string;
destDir?: string;
fileName?: string;
platform?: string;
verbose?: boolean;
}
export declare function install({ version, destDir, fileName, platform, verbose, }?: InstallOptions): Promise<string>;
export {};