UNPKG
@nestdevx/tenant
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
Tenant module for multi-tenant NestJS applications.
github.com/sajanv88/nestdevx
sajanv88/nestdevx
@nestdevx/tenant
/
dist
/
tenant
/
src
/
current-tenant.service.d.ts
11 lines
(10 loc)
•
291 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
IRequest
}
from
"../../shared/src/types"
;
export
declare
class
CurrentTenantService
{
private
readonly
request;
constructor
(
request
:
IRequest
);
get
id
():
string
;
get
name
():
string
;
get
hostName
():
string
;
get
isActive
():
boolean
;
get
dbUri
():
string
; }