/** * 流程调用类型 */ export declare enum AifCallType { /** * 默认值 */ Default = 0, /** * 同步调用 */ Sync = 1, /** * 异步调用 */ Async = 2 }