From d3adc16a08d95d6e331de55d7d3bf05a66a874a8 Mon Sep 17 00:00:00 2001 From: pack Date: Sun, 9 Aug 2026 10:54:08 +0000 Subject: stop tracking node_modules/ --- node_modules/tar/dist/esm/pack.d.ts | 105 ------------------------------------ 1 file changed, 105 deletions(-) delete mode 100644 node_modules/tar/dist/esm/pack.d.ts (limited to 'node_modules/tar/dist/esm/pack.d.ts') diff --git a/node_modules/tar/dist/esm/pack.d.ts b/node_modules/tar/dist/esm/pack.d.ts deleted file mode 100644 index 77eda34..0000000 --- a/node_modules/tar/dist/esm/pack.d.ts +++ /dev/null @@ -1,105 +0,0 @@ -import { type Stats } from 'fs'; -import { WriteEntry, WriteEntrySync, WriteEntryTar } from './write-entry.js'; -export declare class PackJob { - path: string; - absolute: string; - entry?: WriteEntry | WriteEntryTar; - stat?: Stats; - readdir?: string[]; - pending: boolean; - pendingLink: boolean; - ignore: boolean; - piped: boolean; - constructor(path: string, absolute: string); -} -import { Minipass } from 'minipass'; -import * as zlib from 'minizlib'; -import { Yallist } from 'yallist'; -import type { ReadEntry } from './read-entry.js'; -import type { WarnEvent } from './warn-method.js'; -import { type WarnData, type Warner } from './warn-method.js'; -declare const ONSTAT: unique symbol; -declare const ENDED: unique symbol; -declare const QUEUE: unique symbol; -declare const PENDINGLINKS: unique symbol; -declare const CURRENT: unique symbol; -declare const PROCESS: unique symbol; -declare const PROCESSING: unique symbol; -declare const PROCESSJOB: unique symbol; -declare const JOBS: unique symbol; -declare const JOBDONE: unique symbol; -declare const ADDFSENTRY: unique symbol; -declare const ADDTARENTRY: unique symbol; -declare const STAT: unique symbol; -declare const READDIR: unique symbol; -declare const ONREADDIR: unique symbol; -declare const PIPE: unique symbol; -declare const ENTRY: unique symbol; -declare const ENTRYOPT: unique symbol; -declare const WRITEENTRYCLASS: unique symbol; -declare const WRITE: unique symbol; -declare const ONDRAIN: unique symbol; -import type { TarOptions } from './options.js'; -export declare class Pack extends Minipass> implements Warner { - sync: boolean; - opt: TarOptions; - cwd: string; - maxReadSize?: number; - preservePaths: boolean; - strict: boolean; - noPax: boolean; - prefix: string; - linkCache: Exclude; - statCache: Exclude; - file: string; - portable: boolean; - zip?: zlib.BrotliCompress | zlib.Gzip | zlib.ZstdCompress; - readdirCache: Exclude; - noDirRecurse: boolean; - follow: boolean; - noMtime: boolean; - mtime?: Date; - filter: Exclude; - jobs: number; - [WRITEENTRYCLASS]: typeof WriteEntry | typeof WriteEntrySync; - onWriteEntry?: (entry: WriteEntry) => void; - [QUEUE]: Yallist; - [PENDINGLINKS]: Map<`${number}:${number}`, PackJob[]>; - [JOBS]: number; - [PROCESSING]: boolean; - [ENDED]: boolean; - constructor(opt?: TarOptions); - [WRITE](chunk: Buffer): boolean; - add(path: string | ReadEntry): this; - end(cb?: () => void): this; - end(path: string | ReadEntry, cb?: () => void): this; - end(path: string | ReadEntry, encoding?: Minipass.Encoding, cb?: () => void): this; - write(path: string | ReadEntry): boolean; - [ADDTARENTRY](p: ReadEntry): void; - [ADDFSENTRY](p: string): void; - [STAT](job: PackJob): void; - [ONSTAT](job: PackJob, stat: Stats): void; - [READDIR](job: PackJob): void; - [ONREADDIR](job: PackJob, entries: string[]): void; - [PROCESS](): void; - get [CURRENT](): PackJob | undefined; - [JOBDONE](job: PackJob): void; - [PROCESSJOB](job: PackJob): void; - [ENTRYOPT](job: PackJob): TarOptions; - [ENTRY](job: PackJob): WriteEntry | undefined; - [ONDRAIN](): void; - [PIPE](job: PackJob): void; - pause(): void; - warn(code: string, message: string | Error, data?: WarnData): void; -} -export declare class PackSync extends Pack { - sync: true; - constructor(opt: TarOptions); - pause(): void; - resume(): void; - [STAT](job: PackJob): void; - [READDIR](job: PackJob): void; - [PIPE](job: PackJob): void; -} -export {}; -//# sourceMappingURL=pack.d.ts.map \ No newline at end of file -- cgit v1.2.3