9 lines
172 B
TypeScript
9 lines
172 B
TypeScript
export type LessCssWatcherConfigObject = {
|
|
src?: string | string[];
|
|
dst?: string | string[];
|
|
srcDst?: {
|
|
src?: string;
|
|
dst?: string;
|
|
}[];
|
|
};
|