UNPKG
@dans98/prismabox
Version:
latest (2.3.0)
2.3.0
Typebox generator for prisma schema
github.com/m1212e/prismabox
@dans98/prismabox
/
src
/
generators
/
wrappers
/
optional.ts
6 lines
(4 loc)
•
172 B
text/typescript
View Raw
1
2
3
4
5
6
import
{ getConfig }
from
"../../config"
;
export
function
wrapWithOptional
(
input: string
) {
return
`
${getConfig().typeboxImportVariableName}
.Optional(
${input}
)`
; }