UNPKG

324 BTypeScriptView Raw
1import { PluginCreator } from "postcss";
2
3declare namespace localByDefault {
4 interface Options {
5 mode?: "global" | "local" | "pure" | undefined;
6 rewriteUrl?: ((global: boolean, url: string) => string) | undefined;
7 }
8}
9
10declare const creator: PluginCreator<localByDefault.Options>;
11
12export = creator;
13
\No newline at end of file