import { AppMasterCoreConfig, AppMasterCoreType } from "../am-core"; import { AppMasterServerConfig, AppMasterServerType } from "../am-server"; export interface AppMasterConfig extends AppMasterCoreConfig, AppMasterServerConfig { } export interface AppMasterType extends AppMasterCoreType, AppMasterServerType { config: AppMasterConfig; }