@bscotch/stitch
Version:
Stitch: The GameMaker Studio 2 Asset Pipeline Development Kit.
16 lines • 456 B
TypeScript
interface GetResponse {
contentType: string;
data: any;
}
export declare function get(url: string, headers?: {
[key: string]: string | undefined;
}): Promise<GetResponse>;
/**
* Downloads and unzip a remote zip file, returning the root path
* to the unzipped contents.
*/
export declare function unzipRemote(url: string, toDir: string, headers?: {
[header: string]: any;
}): Promise<string>;
export {};
//# sourceMappingURL=http.d.ts.map