jiek 2.0.2-alpha.1 → 2.0.2-alpha.11

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,10 @@
1
+ import { RollupOptions } from 'rollup';
2
+
3
+ interface PackageJSON {
4
+ name?: string;
5
+ type?: string;
6
+ exports?: Record<string, unknown> | string | string[];
7
+ }
8
+ declare function template(packageJSON: PackageJSON): RollupOptions[];
9
+
10
+ export { template };
@@ -0,0 +1,10 @@
1
+ import { RollupOptions } from 'rollup';
2
+
3
+ interface PackageJSON {
4
+ name?: string;
5
+ type?: string;
6
+ exports?: Record<string, unknown> | string | string[];
7
+ }
8
+ declare function template(packageJSON: PackageJSON): RollupOptions[];
9
+
10
+ export { template };