@types/postcss-modules-extract-imports
Version:
TypeScript definitions for postcss-modules-extract-imports
12 lines (9 loc) • 347 B
TypeScript
import { PluginCreator } from "postcss";
declare namespace extractImports {
interface Options {
failOnWrongOrder?: boolean | undefined;
createImportedName?: ((importName: string, importPath: string) => string) | undefined;
}
}
declare const extractImports: PluginCreator<extractImports.Options>;
export = extractImports;