IncludeExcludeTest.d.ts 153 B

12345
  1. declare type IncludeExcludeTest = {
  2. include?: string[];
  3. exclude?: string[];
  4. } | ((chunkName: string) => boolean);
  5. export { IncludeExcludeTest };