superstruct-ts-transformer:用于基于类型的json验证的Typescript自定义转换器

时间:2024-05-22 07:09:59
【文件属性】:

文件名称:superstruct-ts-transformer:用于基于类型的json验证的Typescript自定义转换器

文件大小:144KB

文件格式:ZIP

更新时间:2024-05-22 07:09:59

json typescript json-validation TypeScript

上标打字机变压器 这是一个打字稿转换器,它将validate(JSON.parse("{}"))调用转换为实际的 您编写该代码: import { validate } from "superstruct-ts-transformer" ; type User = { name : string ; alive : boolean ; } ; const obj = validate < User> ( JSON . parse ( '{ "name": "Me", "alive": true }' ) ) ; 它将在您编译时变为 import * as superstruct from "superstruct" ; var obj = validate_User ( JSON . parse ( '{ "name": "Me", "alive": tru


【文件预览】:
superstruct-ts-transformer-master
----.gitignore(35B)
----package.json(1KB)
----.npmrc(23B)
----package-lock.json(24KB)
----.travis.yml(47B)
----LICENSE(1KB)
----ts-node-example()
--------package.json(283B)
--------package-lock.json(7KB)
--------run.js(536B)
--------tsconfig.json(6KB)
--------index.ts(856B)
----debug()
--------debug-source.ts(678B)
--------debug.ts(1KB)
--------debug-source2.ts(287B)
----tsconfig.json(5KB)
----tsconfig.module.json(2KB)
----.github()
--------workflows()
----README.md(6KB)
----tests()
--------test_simpleObjectWithOptionalStringField_successWithField.ts(163B)
--------testEnum3Fail1.ts(241B)
--------test_simpleObjectWithOptionalNumberField_successWithoutField.ts(156B)
--------test_simpleObjectWithStringFieldAndNonStrictNullChecks_successWithNull.ts(162B)
--------test_simpleObjectWithStringOrNullField_failWithFieldMissing.ts(156B)
--------test_simpleObjectWithStringFieldAndNonStrictNullChecks_failWithMissingField.ts(149B)
--------test_customValidator_success.ts(462B)
--------test_hierachicalObjects_failWithChildMissing.ts(209B)
--------test_simpleObjectWithStringFieldAndNonStrictNullChecks_successWithString.ts(162B)
--------test_tupleWithNumberAndString_success.ts(162B)
--------test_objectWithStringIndexAndFields_failWithIndexFieldWithString.ts(234B)
--------test_simpleObjectWithNumberOrNullField_failWithFieldMissing.ts(163B)
--------test_customValidator_fail.ts(439B)
--------testEnum1Fail.ts(235B)
--------test_simpleObjectWithStringField_success.ts(162B)
--------test_objectWithStringIndex_failWithBoolean.ts(192B)
--------test_objectWithNumberArray_success.ts(186B)
--------test_simpleObjectWithOptionalBooleanField_successWithoutField.ts(158B)
--------test_simpleObjectWithStringField_fail.ts(162B)
--------test_hierachicalObjects_failWithChildNull.ts(228B)
--------test_objectWithStringIndex_success.ts(191B)
--------testEnum3Success.ts(245B)
--------test_simpleObjectWithOptionalStringField_failWithNumber.ts(162B)
--------test_simpleObjectWithStringNumberBooleanFields_success.ts(281B)
--------test_simpleObjectWithOptionalNumberField_successWithField.ts(176B)
--------test_simpleObjectWithNumberOrNullField_successWithNull.ts(183B)
--------test_hierachicalObjects_success.ts(250B)
--------test_objectWithNumberArray_failWithStringArray.ts(190B)
--------test_objectWithStringIndex_successWithEmptyObj.ts(158B)
--------test_simpleObjectWithNumberOrNullField_successWithNumber.ts(182B)
--------test_simpleObjectWithStringOrNullField_successWithString.ts(169B)
--------test_simpleObjectWithBooleanOrNullField_successWithNull.ts(186B)
--------test_simpleObjectWithOptionalStringField_successWithoutField.ts(149B)
--------test_objectWithStringIndexAndFields_successWithNoIndexFields.ts(198B)
--------test_objectWithStringIndexAndFields_success.ts(232B)
--------test_simpleObjectWithOptionalBooleanField_failWithString.ts(187B)
--------test_simpleObjectWithStringNumberBooleanFields_failString.ts(282B)
--------test_objectWithStringIndexAndFields_failWithFieldMissing.ts(212B)
--------test_tupleWithNumberAndString_failWithStringNumber.ts(162B)
--------test_simpleObjectWithStringNumberBooleanFields_failBoolean.ts(282B)
--------test_objectWithStringIndex_failWithNumberIndex.ts(180B)
--------test_tupleWithNumberAndString_failWithThirdItem.ts(168B)
--------test_objectWithStringIndexAndFields_failWithFieldWithString.ts(234B)
--------test_simpleObjectWithOptionalNumberField_failWithString.ts(178B)
--------testEnum2Success.ts(246B)
--------test_simpleObjectWithStringNumberBooleanFields_failNumber.ts(282B)
--------test_tupleWithNumberAndString_failWithStringMissing.ts(151B)
--------test_simpleObjectWithBooleanOrNullField_successWithBoolean.ts(186B)
--------test_simpleObjectWithStringOrNullField_successWithNull.ts(169B)
--------test_objectWithNumberArray_failWithNull.ts(176B)
--------test_objectWithNumberArray_successWithEmptyArray.ts(174B)
--------test_simpleObjectWithBooleanOrNullField_failWithFieldMissing.ts(165B)
--------transformer.test.js(12KB)
--------testEnum2Fail.ts(246B)
--------test_hierachicalObjects_failWithChildWithString.ts(252B)
--------testEnum3Fail2.ts(244B)
--------testEnum1Success.ts(234B)
--------test_arrayWithNumber_success.ts(148B)
--------test_simpleObjectWithOptionalBooleanField_successWithField.ts(180B)
----transformer.ts(10KB)
----validator.ts(9KB)
----index.ts(155B)
----webpack-example()
--------package.json(456B)
--------package-lock.json(334KB)
--------webpack.config.js(658B)
--------tsconfig.json(6KB)
--------index.html(183B)
--------index.ts(668B)
----.vscode()
--------launch.json(489B)
----.npmignore(102B)
----.prettierrc(207B)

网友评论