UNPKG

453 BTypeScriptView Raw
1
2
3// --------- Rollup Plugins --------- //
4declare module 'rollup-plugin-commonjs' {
5 function fn(data?: any): any
6 export = fn;
7}
8
9
10declare module 'rollup-plugin-node-resolve' {
11 function fn(data?: any): any
12 export = fn;
13}
14
15declare module 'rollup-plugin-multi-entry' {
16 function fn(data?: any): any
17 export = fn;
18}
19
20declare module 'rollup-plugin-typescript2' {
21 function fn(data?: any): any
22 export = fn;
23}
24
25
26// --------- /Rollup Plugins --------- //