forked from wikimedia/mediawiki-services-parsoid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
doc.basicTypes.js
51 lines (44 loc) · 1.19 KB
/
doc.basicTypes.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
/**
* @class Node
*
* A DOM node. [See the DOM specification for more](http://www.w3.org/TR/dom/#node).
*/
/**
* @class CharacterData
* @extends Node
*
* Some character data, usually a string. [See the DOM specification for more](http://www.w3.org/TR/dom/#characterdata).
*/
/**
* @class TextNode
* @extends CharacterData
*
* A text node. [See the DOM specification for more](http://www.w3.org/TR/dom/#text).
*/
/**
* @class CommentNode
* @extends CharacterData
*
* A comment node. [See the DOM specification for more](http://www.w3.org/TR/dom/#comment).
*/
/**
* @class Element
* @extends Node
*
* An HTML element. [See the DOM specification for more](http://www.w3.org/TR/dom/#element).
*/
/**
* @class EventEmitter
*
* An event-emitting object. [See the Node.js documentation for more](http://nodejs.org/api/events.html#events_class_events_eventemitter).
*/
/**
* @class Response
*
* A Response object for the express application. [See the express documentation for more](http://expressjs.com/api.html#res.status).
*/
/**
* @class Request
*
* A Request object for the express application. [See the express documentation for more](http://expressjs.com/api.html#req.params).
*/