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
/
shared
/
src
/
decorators
/
api-paginated-response.d.ts
3 lines
(2 loc)
•
294 B
TypeScript
View Raw
1
2
3
import
{
Type
}
from
"@nestjs/common"
;
export
declare
const
ApiPaginatedResponse
: <
TModel
extends
Type
<
unknown
>>
(
model
:
TModel
,
description
?:
string
) =>
<
TFunction
extends
Function
, Y>
(
target
:
TFunction
|
object
,
propertyKey
?:
string
|
symbol
,
descriptor
?:
TypedPropertyDescriptor
<Y>
) =>
void
;