mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
24 lines
629 B
TypeScript
24 lines
629 B
TypeScript
// Type definitions for rollup-plugin-url 2.2
|
|
// Project: https://github.com/Swatinem/rollup-plugin-url#readme
|
|
// Definitions by: Jeroen Claassens <https://github.com/me>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 3.0
|
|
|
|
/// <reference types="node" />
|
|
import { Plugin } from 'rollup';
|
|
|
|
interface PluginURLOptions {
|
|
limit?: number;
|
|
include?: string[];
|
|
exclude?: string[];
|
|
publicPath?: string;
|
|
emitFile?: boolean;
|
|
fileName?: string;
|
|
sourceDir?: string;
|
|
destDist?: string;
|
|
}
|
|
|
|
declare function url(options?: PluginURLOptions): Plugin;
|
|
|
|
export default url;
|