gitly
Version:
An API to download and/or extract git repositories
11 lines (10 loc) • 367 B
TypeScript
import type GitlyOptions from '../interfaces/options';
/**
* Extract a zipped file to the specified destination
* @param source The source zipped file
* @param destination The path to extract the zipped file
* @param options
*
*/
declare const _default: (source: string, destination: string, options?: GitlyOptions) => Promise<string>;
export default _default;