projecte_ionic/node_modules/jsdoctypeparser/schemas/FunctionNode.json
2022-02-09 18:30:03 +01:00

36 lines
533 B
JSON
Executable file

{
"type": "object",
"properties": {
"type": { "$ref": "NodeType.json" },
"params": {
"type": "array",
"items": { "$ref": "Node.json" }
},
"returns": {
"oneOf": [
{ "$ref": "Node.json" },
null
]
},
"this": {
"oneOf": [
{ "$ref": "Node.json" },
null
]
},
"new": {
"oneOf": [
{ "$ref": "Node.json" },
null
]
}
},
"required": [
"type",
"params",
"returns",
"this",
"new"
]
}