import ICompileParam from "./ICompileParam"; export default interface ICompiler { compile(param: ICompileParam): Promise; clean(param: ICompileParam): Promise; }