UNPKG

1.1 kBMarkdownView Raw
1# Installation
2> `npm install --save @types/postcss-modules-extract-imports`
3
4# Summary
5This package contains type definitions for postcss-modules-extract-imports (https://github.com/css-modules/postcss-modules-extract-imports).
6
7# Details
8Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/postcss-modules-extract-imports.
9## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/postcss-modules-extract-imports/index.d.ts)
10````ts
11import { PluginCreator } from "postcss";
12
13declare namespace extractImports {
14 interface Options {
15 failOnWrongOrder?: boolean | undefined;
16 createImportedName?: ((importName: string, importPath: string) => string) | undefined;
17 }
18}
19
20declare const extractImports: PluginCreator<extractImports.Options>;
21export = extractImports;
22
23````
24
25### Additional Details
26 * Last updated: Tue, 07 Nov 2023 09:09:39 GMT
27 * Dependencies: [postcss](https://npmjs.com/package/postcss)
28
29# Credits
30These definitions were written by [Jeow Li Huan](https://github.com/huan086).
31
\No newline at end of file