@matatbread/typia
Version:
Superfast runtime validators with only one line
20 lines • 456 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.metadata = metadata;
exports.name = name;
/**
* @internal
*/
function metadata() {
halt("metadata");
}
function name() {
halt("name");
}
/**
* @internal
*/
function halt(name) {
throw new Error(`Error on typia.reflect.${name}(): no transform has been configured. Read and follow https://typia.io/docs/setup please.`);
}
//# sourceMappingURL=reflect.js.map