UNPKG

503 BTypeScriptView Raw
1// Type definitions for postcss-modules-values 4.0
2// Project: https://github.com/css-modules/postcss-modules-values#readme
3// Definitions by: Bob Matcuk <https://github.com/bmatcuk>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5// TypeScript Version: 2.2
6
7import { PluginCreator } from "postcss";
8
9declare namespace values {
10 interface Options {
11 createImportedName(name: string): string;
12 }
13}
14
15declare const creator: PluginCreator<values.Options>;
16
17export = creator;