mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* added rollup-plugin-peer-deps-external * fixed error * fixed formatting * returned back formatting * fixed travis build
24 lines
736 B
TypeScript
24 lines
736 B
TypeScript
// Type definitions for rollup-plugin-peer-deps-external 2.2
|
|
// Project: https://github.com/Updater/rollup-plugin-peer-deps-external
|
|
// Definitions by: Nick <https://github.com/fobdy>,
|
|
// Max Boguslavskiy <https://github.com/maxbogus>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 3.0
|
|
|
|
/// <reference types="node" />
|
|
|
|
import { Plugin } from 'rollup';
|
|
|
|
declare namespace PeerDepsExternalPlugin {
|
|
interface PluginPeerDepsExternalOptions {
|
|
packageJsonPath?: string;
|
|
includeDependencies?: boolean;
|
|
}
|
|
}
|
|
|
|
declare function PeerDepsExternalPlugin(
|
|
options?: PeerDepsExternalPlugin.PluginPeerDepsExternalOptions
|
|
): Plugin;
|
|
|
|
export = PeerDepsExternalPlugin;
|