extract-base-iterator 1.3.3 → 1.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/types.d.cts +3 -0
- package/dist/cjs/types.d.ts +3 -0
- package/dist/esm/types.d.ts +3 -0
- package/dist/esm/types.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/types.d.cts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import type { Mode } from 'fs';
|
|
2
|
+
import type { StackOptions } from 'stack-base-iterator';
|
|
3
|
+
export interface ExtractOptions extends StackOptions {
|
|
4
|
+
}
|
|
2
5
|
export type Callback = (error?: Error) => void;
|
|
3
6
|
export type WriteFileFn = (path: string, options: object, callback: Callback) => void;
|
|
4
7
|
export interface FileAttributes {
|
package/dist/cjs/types.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import type { Mode } from 'fs';
|
|
2
|
+
import type { StackOptions } from 'stack-base-iterator';
|
|
3
|
+
export interface ExtractOptions extends StackOptions {
|
|
4
|
+
}
|
|
2
5
|
export type Callback = (error?: Error) => void;
|
|
3
6
|
export type WriteFileFn = (path: string, options: object, callback: Callback) => void;
|
|
4
7
|
export interface FileAttributes {
|
package/dist/esm/types.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import type { Mode } from 'fs';
|
|
2
|
+
import type { StackOptions } from 'stack-base-iterator';
|
|
3
|
+
export interface ExtractOptions extends StackOptions {
|
|
4
|
+
}
|
|
2
5
|
export type Callback = (error?: Error) => void;
|
|
3
6
|
export type WriteFileFn = (path: string, options: object, callback: Callback) => void;
|
|
4
7
|
export interface FileAttributes {
|
package/dist/esm/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["/Users/kevin/Dev/OpenSource/iterators/extract-base-iterator/src/types.ts"],"sourcesContent":["import type { Mode } from 'fs';\n\nexport type Callback = (error?: Error) => void;\nexport type WriteFileFn = (path: string, options: object, callback: Callback) => void;\n\nexport interface FileAttributes {\n mode: Mode;\n mtime: number;\n path: string;\n}\n\nexport interface DirectoryAttributes {\n mode: Mode;\n mtime: number;\n path: string;\n}\n\nexport interface LinkAttributes {\n mode: Mode;\n mtime: number;\n path: string;\n linkpath: string;\n}\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sources":["/Users/kevin/Dev/OpenSource/iterators/extract-base-iterator/src/types.ts"],"sourcesContent":["import type { Mode } from 'fs';\n\nimport type { StackOptions } from 'stack-base-iterator';\n\nexport interface ExtractOptions extends StackOptions {}\n\nexport type Callback = (error?: Error) => void;\nexport type WriteFileFn = (path: string, options: object, callback: Callback) => void;\n\nexport interface FileAttributes {\n mode: Mode;\n mtime: number;\n path: string;\n}\n\nexport interface DirectoryAttributes {\n mode: Mode;\n mtime: number;\n path: string;\n}\n\nexport interface LinkAttributes {\n mode: Mode;\n mtime: number;\n path: string;\n linkpath: string;\n}\n"],"names":[],"mappings":"AAqBA,WAKC"}
|