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