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