We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62b9c3b commit 778e9e1Copy full SHA for 778e9e1
2 files changed
index.d.ts
@@ -144,11 +144,6 @@ export type ProgressEmitter = {
144
): Promise<string[]>;
145
};
146
147
-export type CopyStatus = {
148
- written: number;
149
- percent: number;
150
-};
151
-
152
/**
153
Copy files.
154
index.js
@@ -138,9 +138,6 @@ export default function cpy(
138
destination,
139
{concurrency = os.availableParallelism(), ...options} = {},
140
) {
141
- /**
142
- @type {Map<string, import('./index').CopyStatus>}
143
- */
const copyStatus = new Map();
0 commit comments