@modern-js/module-tools
Version:
Simple, powerful, high-performance modern npm package development solution.
7 lines (6 loc) • 304 B
TypeScript
import type { ICompiler } from '../../../types';
export declare const isCssModule: (filePath: string, autoModules: boolean | RegExp) => boolean;
export declare const postcssTransformer: (css: string, entryPath: string, compilation: ICompiler) => Promise<{
code: string;
loader: "js" | "css";
}>;