UNPKG

@etsoo/smarterp-core

Version:
18 lines (16 loc) 228 B
/** * Result of creating an API key * 创建API密钥结果 */ export type CreateApiKeyData = { /** * App key * 应用键 */ appKey: string; /** * App secret * 应用密钥 */ appSecret: string; };