ethers.js/misc/admin/thirdparty.d.ts
2020-09-21 01:14:06 -04:00

18 lines
359 B
TypeScript

declare module "tar" {
export type CreateOptions = {
sync?: boolean,
cwd?: string,
prefix?: string,
gzip?: boolean,
portable?: boolean,
mtime?: Date
};
export interface Readable {
read(): Buffer;
}
export function create(options: CreateOptions, files: Array<string>): Readable;
}