files-match.d.ts 139 B

1234567
  1. interface FilesMatch {
  2. files: string[];
  3. dirs: string[];
  4. excluded: string[];
  5. extensions: string[];
  6. }
  7. export { FilesMatch };