UNPKG

jdl

Version:
10 lines (9 loc) 279 B
export declare function downloadBinary(url: string): Promise<Uint8Array>; export type GhFile = { url: string; path: string; name: string; isDir: boolean; buffer?: Uint8Array; }; export declare function download(user: string, repo: string): Promise<GhFile[]>;