forked from angular/angular-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoc.json
More file actions
35 lines (33 loc) · 968 Bytes
/
Copy pathdoc.json
File metadata and controls
35 lines (33 loc) · 968 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"$schema": "http://json-schema.org/schema",
"$id": "ng-cli://commands/doc.json",
"description": "Opens the official Angular documentation (angular.io) in a browser, and searches for a given keyword.",
"$longDescription": "",
"$aliases": [ "d" ],
"$type": "native",
"$impl": "./doc-impl#DocCommand",
"type": "object",
"allOf": [
{
"properties": {
"keyword": {
"type": "string",
"description": "The keyword to search for, as provided in the search bar in angular.io.",
"$default": {
"$source": "argv",
"index": 0
}
},
"search": {
"aliases": ["s"],
"type": "boolean",
"default": false,
"description": "When true, searches all of angular.io. Otherwise, searches only API reference documentation."
}
},
"required": [
]
},
{ "$ref": "./definitions.json#/definitions/base" }
]
}