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