UNPKG

nsn-service-type

Version:

NSN服务类型定义组件

15 lines (11 loc) 291 B
export interface SmartBITreeMarkParams { /** 角色ID */ role_id: string; } /** 系统-samrtbi 服务 */ export interface SmartBIService { /** 报表树查询 */ tree_mark: (params: SmartBITreeMarkParams) => Promise<any>; /** 同步数据 */ clear_sync: () => Promise<any>; }