Skip to content

Commit

Permalink
Remove unused type
Browse files Browse the repository at this point in the history
Closes #115
  • Loading branch information
sindresorhus committed Mar 10, 2024
1 parent 62b9c3b commit 778e9e1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
5 changes: 0 additions & 5 deletions index.d.ts
Expand Up @@ -144,11 +144,6 @@ export type ProgressEmitter = {
): Promise<string[]>;
};

export type CopyStatus = {
written: number;
percent: number;
};

/**
Copy files.
Expand Down
3 changes: 0 additions & 3 deletions index.js
Expand Up @@ -138,9 +138,6 @@ export default function cpy(
destination,
{concurrency = os.availableParallelism(), ...options} = {},
) {
/**
@type {Map<string, import('./index').CopyStatus>}
*/
const copyStatus = new Map();

/**
Expand Down

0 comments on commit 778e9e1

Please sign in to comment.