json-schema-to-jsdoc:从JSON模式生成JSDocs

时间:2024-05-25 01:05:15
【文件属性】:

文件名称:json-schema-to-jsdoc:从JSON模式生成JSDocs

文件大小:74KB

文件格式:ZIP

更新时间:2024-05-25 01:05:15

jsdoc json-schema JavaScript

JSON模式到JSDoc 当您已经拥有JSON Schema并想要记录要验证的类型时很有用。 与子模式定义一起使用。 用法 const jsdoc = require ( 'json-schema-to-jsdoc' ) const schema = { "title" : "Person" , "type" : "object" , "properties" : { "name" : { "type" : "string" , "description" : "A person's name" } , "age" : { "type" : "integer" , "description" : "A person's age" } } , "required" : [ "name" ] } jsdoc ( schema /* , optionsObj


【文件预览】:
json-schema-to-jsdoc-master
----.gitignore(55B)
----LICENSE-ISC.txt(785B)
----package.json(1KB)
----package-lock.json(247KB)
----.travis.yml(49B)
----index.js(8KB)
----test.js(26KB)
----.eslintrc.js(320B)
----example.js(339B)
----.eslintignore(23B)
----readme.md(6KB)
----.npmignore(25B)
----.editorconfig(278B)

网友评论