-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
240 lines (239 loc) · 7.37 KB
/
index.ts
File metadata and controls
240 lines (239 loc) · 7.37 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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
/**
* @file Entry Point - Errors
* @module errnode/errors
* @see https://nodejs.org/api/errors.html#nodejs-error-codes
*/
export {
default as ERR_ARG_NOT_ITERABLE,
type ErrArgNotIterable,
type ErrArgNotIterableArgs,
type ErrArgNotIterableConstructor
} from './err-arg-not-iterable'
export {
default as ERR_ENCODING_NOT_SUPPORTED,
type ErrEncodingNotSupported,
type ErrEncodingNotSupportedArgs,
type ErrEncodingNotSupportedConstructor
} from './err-encoding-not-supported'
export {
default as ERR_IMPORT_ASSERTION_TYPE_FAILED,
type ErrImportAssertionTypeFailed,
type ErrImportAssertionTypeFailedArgs,
type ErrImportAssertionTypeFailedConstructor
} from './err-import-assertion-type-failed'
export {
default as ERR_IMPORT_ASSERTION_TYPE_MISSING,
type ErrImportAssertionTypeMissing,
type ErrImportAssertionTypeMissingArgs,
type ErrImportAssertionTypeMissingConstructor
} from './err-import-assertion-type-missing'
export {
default as ERR_IMPORT_ASSERTION_TYPE_UNSUPPORTED,
type ErrImportAssertionTypeUnsupported,
type ErrImportAssertionTypeUnsupportedArgs,
type ErrImportAssertionTypeUnsupportedConstructor
} from './err-import-assertion-type-unsupported'
export {
default as ERR_IMPORT_ATTRIBUTE_MISSING,
type ErrImportAttributeMissing,
type ErrImportAttributeMissingArgs,
type ErrImportAttributeMissingConstructor
} from './err-import-attribute-missing'
export {
default as ERR_IMPORT_ATTRIBUTE_TYPE_INCOMPATIBLE,
type ErrImportAttributeTypeIncompatible,
type ErrImportAttributeTypeIncompatibleArgs,
type ErrImportAttributeTypeIncompatibleConstructor
} from './err-import-attribute-type-incompatible'
export {
default as ERR_IMPORT_ATTRIBUTE_UNSUPPORTED,
type ErrImportAttributeUnsupported,
type ErrImportAttributeUnsupportedArgs,
type ErrImportAttributeUnsupportedConstructor
} from './err-import-attribute-unsupported'
export {
default as ERR_INCOMPATIBLE_OPTION_PAIR,
type ErrIncompatibleOptionPair,
type ErrIncompatibleOptionPairArgs,
type ErrIncompatibleOptionPairConstructor
} from './err-incompatible-option-pair'
export {
default as ERR_INVALID_ARG_TYPE,
type ErrInvalidArgType,
type ErrInvalidArgTypeArgs,
type ErrInvalidArgTypeConstructor
} from './err-invalid-arg-type'
export {
default as ERR_INVALID_ARG_VALUE,
type ErrInvalidArgValue,
type ErrInvalidArgValueArgs,
type ErrInvalidArgValueConstructor
} from './err-invalid-arg-value'
export {
default as ERR_INVALID_FILE_URL_HOST,
type ErrInvalidFileUrlHost,
type ErrInvalidFileUrlHostArgs,
type ErrInvalidFileUrlHostConstructor
} from './err-invalid-file-url-host'
export {
default as ERR_INVALID_FILE_URL_PATH,
type ErrInvalidFileUrlPath,
type ErrInvalidFileUrlPathArgs,
type ErrInvalidFileUrlPathConstructor
} from './err-invalid-file-url-path'
export {
default as ERR_INVALID_MODULE_SPECIFIER,
type ErrInvalidModuleSpecifier,
type ErrInvalidModuleSpecifierArgs,
type ErrInvalidModuleSpecifierConstructor
} from './err-invalid-module-specifier'
export {
default as ERR_INVALID_PACKAGE_CONFIG,
type ErrInvalidPackageConfig,
type ErrInvalidPackageConfigArgs,
type ErrInvalidPackageConfigConstructor
} from './err-invalid-package-config'
export {
default as ERR_INVALID_PACKAGE_TARGET,
type ErrInvalidPackageTarget,
type ErrInvalidPackageTargetArgs,
type ErrInvalidPackageTargetConstructor
} from './err-invalid-package-target'
export {
default as ERR_INVALID_RETURN_VALUE,
type ErrInvalidReturnValue,
type ErrInvalidReturnValueArgs,
type ErrInvalidReturnValueConstructor
} from './err-invalid-return-value'
export {
default as ERR_INVALID_THIS,
type ErrInvalidThis,
type ErrInvalidThisArgs,
type ErrInvalidThisConstructor
} from './err-invalid-this'
export {
default as ERR_INVALID_TUPLE,
type ErrInvalidTuple,
type ErrInvalidTupleArgs,
type ErrInvalidTupleConstructor
} from './err-invalid-tuple'
export {
default as ERR_INVALID_URL,
type ErrInvalidUrl,
type ErrInvalidUrlArgs,
type ErrInvalidUrlConstructor
} from './err-invalid-url'
export {
default as ERR_INVALID_URL_SCHEME,
type ErrInvalidUrlScheme,
type ErrInvalidUrlSchemeArgs,
type ErrInvalidUrlSchemeConstructor
} from './err-invalid-url-scheme'
export {
default as ERR_METHOD_NOT_IMPLEMENTED,
type ErrMethodNotImplemented,
type ErrMethodNotImplementedArgs,
type ErrMethodNotImplementedConstructor
} from './err-method-not-implemented'
export {
default as ERR_MISSING_ARGS,
type ErrMissingArgs,
type ErrMissingArgsArgs,
type ErrMissingArgsConstructor
} from './err-missing-args'
export {
default as ERR_MISSING_OPTION,
type ErrMissingOption,
type ErrMissingOptionArgs,
type ErrMissingOptionConstructor
} from './err-missing-option'
export {
default as ERR_MODULE_NOT_FOUND,
type ErrModuleNotFound,
type ErrModuleNotFoundArgs,
type ErrModuleNotFoundConstructor
} from './err-module-not-found'
export {
default as ERR_NETWORK_IMPORT_DISALLOWED,
type ErrNetworkImportDisallowed,
type ErrNetworkImportDisallowedArgs,
type ErrNetworkImportDisallowedConstructor
} from './err-network-import-disallowed'
export {
default as ERR_NO_CRYPTO,
type ErrNoCrypto,
type ErrNoCryptoArgs,
type ErrNoCryptoConstructor
} from './err-no-crypto'
export {
default as ERR_NO_ICU,
type ErrNoIcu,
type ErrNoIcuArgs,
type ErrNoIcuConstructor
} from './err-no-icu'
export {
default as ERR_OPERATION_FAILED,
type ErrOperationFailed,
type ErrOperationFailedArgs,
type ErrOperationFailedConstructor
} from './err-operation-failed'
export {
default as ERR_PACKAGE_IMPORT_NOT_DEFINED,
type ErrPackageImportNotDefined,
type ErrPackageImportNotDefinedArgs,
type ErrPackageImportNotDefinedConstructor
} from './err-package-import-not-defined'
export {
default as ERR_PACKAGE_PATH_NOT_EXPORTED,
type ErrPackagePathNotExported,
type ErrPackagePathNotExportedArgs,
type ErrPackagePathNotExportedConstructor
} from './err-package-path-not-exported'
export {
default as ERR_UNHANDLED_ERROR,
type ErrUnhandledError,
type ErrUnhandledErrorArgs,
type ErrUnhandledErrorConstructor
} from './err-unhandled-error'
export {
default as ERR_UNKNOWN_BUILTIN_MODULE,
type ErrUnknownBuiltinModule,
type ErrUnknownBuiltinModuleArgs,
type ErrUnknownBuiltinModuleConstructor
} from './err-unknown-builtin-module'
export {
default as ERR_UNKNOWN_ENCODING,
type ErrUnknownEncoding,
type ErrUnknownEncodingArgs,
type ErrUnknownEncodingConstructor
} from './err-unknown-encoding'
export {
default as ERR_UNKNOWN_FILE_EXTENSION,
type ErrUnknownFileExtension,
type ErrUnknownFileExtensionArgs,
type ErrUnknownFileExtensionConstructor
} from './err-unknown-file-extension'
export {
default as ERR_UNKNOWN_MODULE_FORMAT,
type ErrUnknownModuleFormat,
type ErrUnknownModuleFormatArgs,
type ErrUnknownModuleFormatConstructor
} from './err-unknown-module-format'
export {
default as ERR_UNSUPPORTED_DIR_IMPORT,
type ErrUnsupportedDirImport,
type ErrUnsupportedDirImportArgs,
type ErrUnsupportedDirImportConstructor
} from './err-unsupported-dir-import'
export {
default as ERR_UNSUPPORTED_ESM_URL_SCHEME,
type ErrUnsupportedEsmUrlScheme,
type ErrUnsupportedEsmUrlSchemeArgs,
type ErrUnsupportedEsmUrlSchemeConstructor
} from './err-unsupported-esm-url-scheme'
export {
default as ERR_UNSUPPORTED_RESOLVE_REQUEST,
type ErrUnsupportedResolveRequest,
type ErrUnsupportedResolveRequestArgs,
type ErrUnsupportedResolveRequestConstructor
} from './err-unsupported-resolve-request'