UNPKG
nsn-service-type
Version:
latest (1.0.20210118)
1.0.20210118
1.0.20201209
1.0.20201203
1.0.20201105
1.0.20200928
1.0.20200925
1.0.20200603
1.0.20200602
1.0.20101202
NSN服务类型定义组件
www.nsn.com
nsn-service-type
/
es
/
service
/
TenantService.d.ts
10 lines
(7 loc)
•
265 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
Tenant
}
from
'nsn-entity'
;
export
type
TenantUploadAvatarParams
=
Pick
<
Tenant
,
'id'
|
'logo'
>;
/** 系统-租户 服务 */
export
interface
TenantService
{
/** logo图片上传 */
upload_avatar
:
(
params
:
TenantUploadAvatarParams
) =>
Promise
<
any
>; }