export interface IConfigCompilerOptions { /** tsconfig, 默认:`undefined` */ tsconfig?: string; /** 是否自动编译configs文件夹,默认:`false` */ enabled: boolean; /** 是否强制编译configs文件夹,默认:`false` */ force: boolean; /** 整个configs文件夹的相对位置,默认:`'config'` */ configRoot?: string; /** 整个configs文件夹编译后的输出位置,默认:`'config'` */ outRoot?: string; } export interface IInnerConfigCompilerOptions extends IConfigCompilerOptions { fileList?: string[]; } export declare const defaultConfigCompilerOptions: IConfigCompilerOptions; export declare function compileFn(options: Partial): string[];