-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathinput.js
134 lines (118 loc) · 2.71 KB
/
input.js
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/**
* @typedef {Object} Comment
* @property {boolean} abstract
* @property {Access} access
* @property {Path[]} augments
* @property {Author[]} authors
* @property {*} borrows
* @property {Unist} classdesc
* @property {*} constructs
* @property {Context} context
* @property {Unist} copyright
* @property {*} default
* @property {Unist} deprecated
* @property {Unist} description
* @property {*} enum
* @property {Example[]} examples
* @property {*} exports
* @property {Path[]} fires
* @property {boolean} ignore
* @property {Path[]} implements
* @property {boolean} interface
* @property {Kind} kind
* @property {*} license
* @property {Path[]} listens
* @property {Loc} loc
* @property {Path} memberof
* @property {Members} members
* @property {Path[]} mixes
* @property {Path} name
* @property {boolean} override
* @property {Parameter[]} params
* @property {Property[]} properties
* @property {boolean} readonly
* @property {Path[]} requires
* @property {Return[]} returns
* @property {Scope} scope
* @property {Unist[]} sees
* @property {Version} since
* @property {Unist} summary
* @property {Path} this
* @property {Throw[]} throws
* @property {Unist[]} todos
* @property {*} tutorial
* @property {Type} type
* @property {*} variation
* @property {Version} version
*/
/**
* Valid values are `'public'`, `'private'`, and `'protected'`.
* @typedef {String} Access
*/
/**
* @typedef {Object} Author
* @property {String} name
* @property {String} email
*/
/**
* @typedef {Object} Context
*/
/**
* @typedef {Object} Example
* @property {Unist} caption
* @property {String} code
*/
/**
* Valid values are `'class'`, `'constant'`, `'event'`, `'external'`, `'file'`, `'function'`, `'member'`, `'mixin'`,
* `'module'`, `'namespace'`, and `'typedef'`.
* @typedef {String} Kind
*/
/**
* @typedef {Object} Loc
*/
/**
* @typedef {Object} Members
* @property {Comment[]} inner
* @property {Comment[]} instance
* @property {Comment[]} static
*/
/**
* @typedef {Object} Parameter
* @property {Type} type
* @property {Path} name
* @property {Unist} description
* @property {Property[]} properties
*/
/**
* @typedef {Object} Path
*/
/**
* @typedef {Object} Property
* @property {Type} type
* @property {Path} name
* @property {Unist} description
* @property {Property[]} properties
*/
/**
* @typedef {Object} Return
* @property {Type} type
* @property {Unist} description
*/
/**
* Valid values are `'global'`, `'static'`, `'instance'`, and `'inner'`.
* @typedef {String} Scope
*/
/**
* @typedef {Object} Throw
* @property {Type} type
* @property {Unist} description
*/
/**
* @typedef {Object} Type
*/
/**
* @typedef {Object} Unist
*/
/**
* @typedef {String} Version
*/