UNPKG

@hz-9/a5-tenant

Version:

Tenant module for the @hz-9/a5-* series of repositories.

31 lines (30 loc) 519 B
/** * @public */ export interface A5TenantGuardConstructorOptions { /** * 是否启用空白自动转换为默认租户功能 * * @defaultValue true */ emptyToDefault?: boolean; /** * 默认租户 ID * * @defaultValue '-' */ defaultTenantId?: string; } /** * @public */ export type A5TenantGuardOptions = Required<A5TenantGuardConstructorOptions>; /** * @public */ export interface A5TenantPayload { /** * 租户 ID */ tenantId: string; }