@matatbread/typia
Version:
Superfast runtime validators with only one line
18 lines • 684 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NoTransformConfigurationError = NoTransformConfigurationError;
/** @internal */
function NoTransformConfigurationError(name) {
throw new Error([
`Error on typia.${name}(): no transform has been configured.`,
"",
"Read and follow https://typia.io/docs/setup please.",
"",
[
"If you've already completed the setup, it means there's",
"a bug in your code. Run `tsc` command so that check what",
"is wrong with your code.",
].join(" "),
].join("\n"));
}
//# sourceMappingURL=NoTransformConfigurationError.js.map