import { ExecOptions } from "./core.ts";
/** 检查 Api 是否存在选项 */
export interface CheckApiOptions extends ExecOptions<boolean, any> {
    /** 服务名称 */
    service: string;
    /** 方法名称 */
    method: string;
}
