UNPKG
@wiqotech/nestjs-digiflazz
Version:
latest (0.0.1)
0.0.1
NestJS Digiflazz SDK Module
github.com/juniarta/nestjs-digiflazz
juniarta/nestjs-digiflazz
@wiqotech/nestjs-digiflazz
/
dist
/
digiflazz
/
dto
/
InquiryPln.d.ts
10 lines
(9 loc)
•
230 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{ z }
from
'zod'
;
export
declare
const
InquirySchema
: z.
ZodObject
<{
refNo
: z.
ZodNumber
; },
"strip"
, z.
ZodTypeAny
, {
refNo
:
number
; }, {
refNo
:
number
; }>;
export
type
InquiryPln
= z.
infer
<
typeof
InquirySchema
>;