UNPKG

347 BTypeScriptView Raw
1import { PluginCreator } from "postcss";
2
3declare namespace extractImports {
4 interface Options {
5 failOnWrongOrder?: boolean | undefined;
6 createImportedName?: ((importName: string, importPath: string) => string) | undefined;
7 }
8}
9
10declare const extractImports: PluginCreator<extractImports.Options>;
11export = extractImports;
12
\No newline at end of file