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