UNPKG

413 BJavaScriptView Raw
1/**
2 * Created by desmond on 4/16/17.
3 */
4'use strict';
5
6type BaseEntry = {
7 index: string,
8 includes: Array<string>
9}
10
11type CustomEntry = {
12 id: number,
13 name: string,
14 inject: boolean,
15 index: string
16}
17
18export type Config = {
19 root: string,
20 dev: boolean,
21 platform: string,
22 packageName: string,
23 outputDir: string,
24 bundleDir: string,
25 baseEntry: BaseEntry,
26 customEntries: Array<CustomEntry>
27};
\No newline at end of file