UNPKG
@raddiamond/nexauth-core
Version:
latest (0.2.1)
0.2.1
0.1.1
0.1.0
Core authentication plugin supporting Local, AD authentication
@raddiamond/nexauth-core
/
dist
/
entities
/
Tenant.d.ts
15 lines
(14 loc)
•
322 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export declare class Tenant { id: string; tenantId: string; clientId: string; clientSecret: string; identityProviderType:
'local'
|
'ad'
|
'ui'
; redirectUrl?: string; allowedOrigins?: string[]; authSteps?: { type: string;
[key: string]
: any; }
[]
; domain?: string; }