UNPKG

383 BTypeScriptView Raw
1import { Plugin } from "rollup";
2
3declare namespace PeerDepsExternalPlugin {
4 interface PluginPeerDepsExternalOptions {
5 packageJsonPath?: string | undefined;
6 includeDependencies?: boolean | undefined;
7 }
8}
9
10declare function PeerDepsExternalPlugin(
11 options?: PeerDepsExternalPlugin.PluginPeerDepsExternalOptions,
12): Plugin;
13
14export = PeerDepsExternalPlugin;