vite-plugin-setting-css-module-plus
Version:
11 lines (8 loc) • 320 B
TypeScript
type QueryType = RegExp | Function | null;
interface TransFormFunctionQuery {
include?: QueryType;
exclude?: QueryType;
}
type TransFormFunction<T> = (query?: TransFormFunctionQuery) => T;
declare const vitePluginSettingCssModules: TransFormFunction<object>;
export { vitePluginSettingCssModules as default };