-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathBrowser.DomException.fs
More file actions
67 lines (64 loc) · 3.06 KB
/
Copy pathBrowser.DomException.fs
File metadata and controls
67 lines (64 loc) · 3.06 KB
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
namespace Browser.Types
open System
open Fable.Core
type [<AllowNullLiteral; Global>] DOMException =
abstract code: float with get, set
abstract message: string with get, set
abstract name: string with get, set
abstract ABORT_ERR: float with get, set
abstract DATA_CLONE_ERR: float with get, set
abstract DOMSTRING_SIZE_ERR: float with get, set
abstract HIERARCHY_REQUEST_ERR: float with get, set
abstract INDEX_SIZE_ERR: float with get, set
abstract INUSE_ATTRIBUTE_ERR: float with get, set
abstract INVALID_ACCESS_ERR: float with get, set
abstract INVALID_CHARACTER_ERR: float with get, set
abstract INVALID_MODIFICATION_ERR: float with get, set
abstract INVALID_NODE_TYPE_ERR: float with get, set
abstract INVALID_STATE_ERR: float with get, set
abstract NAMESPACE_ERR: float with get, set
abstract NETWORK_ERR: float with get, set
abstract NOT_FOUND_ERR: float with get, set
abstract NOT_SUPPORTED_ERR: float with get, set
abstract NO_DATA_ALLOWED_ERR: float with get, set
abstract NO_MODIFICATION_ALLOWED_ERR: float with get, set
abstract PARSE_ERR: float with get, set
abstract QUOTA_EXCEEDED_ERR: float with get, set
abstract SECURITY_ERR: float with get, set
abstract SERIALIZE_ERR: float with get, set
abstract SYNTAX_ERR: float with get, set
abstract TIMEOUT_ERR: float with get, set
abstract TYPE_MISMATCH_ERR: float with get, set
abstract URL_MISMATCH_ERR: float with get, set
abstract VALIDATION_ERR: float with get, set
abstract WRONG_DOCUMENT_ERR: float with get, set
abstract toString: unit -> string
type [<AllowNullLiteral>] DOMExceptionType =
abstract ABORT_ERR: float with get, set
abstract DATA_CLONE_ERR: float with get, set
abstract DOMSTRING_SIZE_ERR: float with get, set
abstract HIERARCHY_REQUEST_ERR: float with get, set
abstract INDEX_SIZE_ERR: float with get, set
abstract INUSE_ATTRIBUTE_ERR: float with get, set
abstract INVALID_ACCESS_ERR: float with get, set
abstract INVALID_CHARACTER_ERR: float with get, set
abstract INVALID_MODIFICATION_ERR: float with get, set
abstract INVALID_NODE_TYPE_ERR: float with get, set
abstract INVALID_STATE_ERR: float with get, set
abstract NAMESPACE_ERR: float with get, set
abstract NETWORK_ERR: float with get, set
abstract NOT_FOUND_ERR: float with get, set
abstract NOT_SUPPORTED_ERR: float with get, set
abstract NO_DATA_ALLOWED_ERR: float with get, set
abstract NO_MODIFICATION_ALLOWED_ERR: float with get, set
abstract PARSE_ERR: float with get, set
abstract QUOTA_EXCEEDED_ERR: float with get, set
abstract SECURITY_ERR: float with get, set
abstract SERIALIZE_ERR: float with get, set
abstract SYNTAX_ERR: float with get, set
abstract TIMEOUT_ERR: float with get, set
abstract TYPE_MISMATCH_ERR: float with get, set
abstract URL_MISMATCH_ERR: float with get, set
abstract VALIDATION_ERR: float with get, set
abstract WRONG_DOCUMENT_ERR: float with get, set
[<Emit("new $0($1...)")>] abstract Create: unit -> DOMException