aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/tar/dist/commonjs/pax.d.ts
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--node_modules/tar/dist/commonjs/pax.d.ts26
1 files changed, 26 insertions, 0 deletions
diff --git a/node_modules/tar/dist/commonjs/pax.d.ts b/node_modules/tar/dist/commonjs/pax.d.ts
new file mode 100644
index 0000000..a4913c7
--- /dev/null
+++ b/node_modules/tar/dist/commonjs/pax.d.ts
@@ -0,0 +1,26 @@
+import type { HeaderData } from './header.js';
+export declare class Pax implements HeaderData {
+ atime?: Date;
+ mtime?: Date;
+ ctime?: Date;
+ charset?: string;
+ comment?: string;
+ gid?: number;
+ uid?: number;
+ gname?: string;
+ uname?: string;
+ linkpath?: string;
+ dev?: number;
+ ino?: number;
+ nlink?: number;
+ path?: string;
+ size?: number;
+ mode?: number;
+ global: boolean;
+ constructor(obj: HeaderData, global?: boolean);
+ encode(): Buffer<ArrayBuffer>;
+ encodeBody(): string;
+ encodeField(field: keyof Pax): string;
+ static parse(str: string, ex?: HeaderData, g?: boolean): Pax;
+}
+//# sourceMappingURL=pax.d.ts.map \ No newline at end of file