1 | import { Plugin } from "rollup";
|
2 |
|
3 | interface PluginURLOptions {
|
4 | limit?: number | undefined;
|
5 | include?: string[] | undefined;
|
6 | exclude?: string[] | undefined;
|
7 | publicPath?: string | undefined;
|
8 | emitFiles?: boolean | undefined;
|
9 | fileName?: string | undefined;
|
10 | sourceDir?: string | undefined;
|
11 | destDist?: string | undefined;
|
12 | }
|
13 |
|
14 | declare function url(options?: PluginURLOptions): Plugin;
|
15 |
|
16 | export default url;
|