aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/tar/dist/commonjs/read-entry.d.ts
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--node_modules/tar/dist/commonjs/read-entry.d.ts36
1 files changed, 36 insertions, 0 deletions
diff --git a/node_modules/tar/dist/commonjs/read-entry.d.ts b/node_modules/tar/dist/commonjs/read-entry.d.ts
new file mode 100644
index 0000000..6376739
--- /dev/null
+++ b/node_modules/tar/dist/commonjs/read-entry.d.ts
@@ -0,0 +1,36 @@
+import { Minipass } from 'minipass';
+import type { Header } from './header.js';
+import type { Pax } from './pax.js';
+import type { EntryTypeName } from './types.js';
+export declare class ReadEntry extends Minipass<Buffer, Buffer> {
+ #private;
+ extended?: Pax;
+ globalExtended?: Pax;
+ header: Header;
+ startBlockSize: number;
+ blockRemain: number;
+ remain: number;
+ type: EntryTypeName;
+ meta: boolean;
+ ignore: boolean;
+ path: string;
+ mode?: number;
+ uid?: number;
+ gid?: number;
+ uname?: string;
+ gname?: string;
+ size: number;
+ mtime?: Date;
+ atime?: Date;
+ ctime?: Date;
+ linkpath?: string;
+ dev?: number;
+ ino?: number;
+ nlink?: number;
+ invalid: boolean;
+ absolute?: string;
+ unsupported: boolean;
+ constructor(header: Header, ex?: Pax, gex?: Pax);
+ write(data: Buffer): boolean;
+}
+//# sourceMappingURL=read-entry.d.ts.map \ No newline at end of file