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