UNPKG

429 BTypeScriptView Raw
1import { Plugin } from "rollup";
2
3interface 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
14declare function url(options?: PluginURLOptions): Plugin;
15
16export default url;