6 lines
153 B
TypeScript
6 lines
153 B
TypeScript
|
declare type IncludeExcludeTest = {
|
||
|
include?: string[];
|
||
|
exclude?: string[];
|
||
|
} | ((chunkName: string) => boolean);
|
||
|
export { IncludeExcludeTest };
|