/** * @description: entrys * @creater: liupw * @date: 2021/08/06 11:26 */ import { system } from './system' import { common } from './common' export const entrys = { common, system, } export interface IndexType { readonly common: string readonly system: string }