UNPKG

@aaronhayes/hasura-cli

Version:

A package that automatically installs and wraps Hasura CLI binary in isolated manner

9 lines (8 loc) 294 B
interface DownloadOptions { url: string; destDir: string; fileName: string; } export declare function download({ url, destDir, fileName, }: DownloadOptions): Promise<string>; export declare function getUrl(tag: string, platform?: string, arch?: string): Promise<string>; export {};