From 6d32530aca326158c5f48fccf012edde80ab41a4 Mon Sep 17 00:00:00 2001 From: Kinrany Date: Thu, 3 Jan 2019 11:35:07 +0300 Subject: [PATCH] Simplify RollupOptions (#2622) Remove `input` and `cache` properties from `RollupOptions` interface. Closes https://github.com/rollup/rollup/issues/2621 --- src/rollup/types.d.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/rollup/types.d.ts b/src/rollup/types.d.ts index 52df44cb316..24d2cc210a8 100644 --- a/src/rollup/types.d.ts +++ b/src/rollup/types.d.ts @@ -383,8 +383,6 @@ export interface RollupBuild { } export interface RollupOptions extends InputOptions { - cache?: RollupCache; - input: string | string[] | { [entryName: string]: string }; output?: OutputOptions; }