1 | # Installation
|
2 | > `npm install --save @types/rollup-plugin-peer-deps-external`
|
3 |
|
4 | # Summary
|
5 | This package contains type definitions for rollup-plugin-peer-deps-external (https://github.com/Updater/rollup-plugin-peer-deps-external).
|
6 |
|
7 | # Details
|
8 | Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rollup-plugin-peer-deps-external.
|
9 | ## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rollup-plugin-peer-deps-external/index.d.ts)
|
10 | ````ts
|
11 | import { Plugin } from "rollup";
|
12 |
|
13 | declare namespace PeerDepsExternalPlugin {
|
14 | interface PluginPeerDepsExternalOptions {
|
15 | packageJsonPath?: string | undefined;
|
16 | includeDependencies?: boolean | undefined;
|
17 | }
|
18 | }
|
19 |
|
20 | declare function PeerDepsExternalPlugin(
|
21 | options?: PeerDepsExternalPlugin.PluginPeerDepsExternalOptions,
|
22 | ): Plugin;
|
23 |
|
24 | export = PeerDepsExternalPlugin;
|
25 |
|
26 | ````
|
27 |
|
28 | ### Additional Details
|
29 | * Last updated: Fri, 01 Mar 2024 00:50:47 GMT
|
30 | * Dependencies: [rollup](https://npmjs.com/package/rollup)
|
31 |
|
32 | # Credits
|
33 | These definitions were written by [Nick](https://github.com/fobdy), and [Max Boguslavskiy](https://github.com/maxbogus).
|
34 |
|
\ | No newline at end of file |