UNPKG

@fairmint/canton-node-sdk

Version:
9 lines 351 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.NonEmptyStringSchema = void 0; const zod_1 = require("zod"); exports.NonEmptyStringSchema = zod_1.z .string() .min(1, 'Value must be a non-empty string') .refine(val => val !== 'undefined', 'Value cannot be "undefined"'); //# sourceMappingURL=base.js.map