UNPKG
mcp-simple-gateway
Version:
latest (1.0.0)
1.0.0
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
MCP Simple Gateway
github.com/denwakeup/mcp-simple-gateway
denwakeup/mcp-simple-gateway
mcp-simple-gateway
/
dist
/
helpers
/
createValidator.d.ts
3 lines
(2 loc)
•
143 B
TypeScript
View Raw
1
2
3
import
{
ZodType
}
from
'zod'
;
export
declare
const
createValidator
: <K>
(
validator
:
ZodType
<K>
) =>
(
data
:
unknown
,
errorPrefix
?:
string
) =>
K;