UNPKG

419 BTypeScriptView Raw
1/**
2 * Store configuration.
3 *
4 * @interface Store
5 */
6interface Store {
7 key?: string;
8 slug: string;
9}
10/**
11 * Loader configuration
12 *
13 * @interface Loader
14 */
15interface Loader {
16 autorun?: boolean;
17}
18/**
19 * Bundle configuration.
20 *
21 * @export
22 * @interface Configuration
23 */
24export interface Configuration {
25 store: Store;
26 loader?: Loader;
27 environment?: "development" | "production";
28}
29export {};