UNPKG

@etsoo/smarterp-core

Version:

TypeScript APIs for SmartERP Core

20 lines (17 loc) 349 B
import { IdentityType, QueryRQ } from "@etsoo/appscript"; /** * Application list request data * 应用列表请求数据 */ export type AppListRQ = QueryRQ & { /** * Identity type * 身份类型 */ identityType?: IdentityType; /** * Require local URL or not * 是否需要本地地址 */ requireLocalUrl?: boolean; };