6 lines
178 B
TypeScript
6 lines
178 B
TypeScript
import { Stats } from 'node:fs';
|
|
|
|
declare function createIgnore(_root: string, pattern?: string | string[]): (path: string, _stats?: Stats) => boolean;
|
|
|
|
export { createIgnore };
|