UNPKG

225 BTypeScriptView Raw
1import { PluginCreator } from "postcss";
2
3declare namespace values {
4 interface Options {
5 createImportedName(name: string): string;
6 }
7}
8
9declare const creator: PluginCreator<values.Options>;
10
11export = creator;