@opra/client 0.11.2 → 0.11.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +23 -2
- package/typings/client-error.d.ts +1 -1
- package/typings/common/constants.d.ts +0 -0
- package/typings/common/exception/enums/issue-severity.enum.d.ts +13 -0
- package/typings/common/exception/error-issue.d.ts +9 -0
- package/typings/common/exception/http-errors/bad-request.error.d.ts +10 -0
- package/typings/common/exception/http-errors/failed-dependency.error.d.ts +9 -0
- package/typings/common/exception/http-errors/forbidden.error.d.ts +11 -0
- package/typings/common/exception/http-errors/internal-server.error.d.ts +9 -0
- package/typings/common/exception/http-errors/method-not-allowed.error.d.ts +10 -0
- package/typings/common/exception/http-errors/not-acceptable.error.d.ts +10 -0
- package/typings/common/exception/http-errors/not-found.error.d.ts +13 -0
- package/typings/common/exception/http-errors/unauthorized.error.d.ts +10 -0
- package/typings/common/exception/http-errors/unprocessable-entity.error.d.ts +9 -0
- package/typings/common/exception/index.d.ts +15 -0
- package/typings/common/exception/opra-exception.d.ts +15 -0
- package/typings/common/exception/resource-errors/resource-conflict.error.d.ts +5 -0
- package/typings/common/exception/resource-errors/resource-not-found.error.d.ts +4 -0
- package/typings/common/exception/wrap-exception.d.ts +2 -0
- package/typings/common/filter/antlr/OpraFilterLexer.d.ts +77 -0
- package/typings/common/filter/antlr/OpraFilterListener.d.ts +430 -0
- package/typings/common/filter/antlr/OpraFilterParser.d.ts +437 -0
- package/typings/common/filter/antlr/OpraFilterVisitor.d.ts +260 -0
- package/typings/common/filter/ast/abstract/ast.d.ts +5 -0
- package/typings/common/filter/ast/abstract/expression.d.ts +3 -0
- package/typings/common/filter/ast/abstract/literal.d.ts +6 -0
- package/typings/common/filter/ast/abstract/term.d.ts +3 -0
- package/typings/common/filter/ast/expressions/arithmetic-expression.d.ts +13 -0
- package/typings/common/filter/ast/expressions/array-expression.d.ts +7 -0
- package/typings/common/filter/ast/expressions/comparison-expression.d.ts +10 -0
- package/typings/common/filter/ast/expressions/logical-expression.d.ts +8 -0
- package/typings/common/filter/ast/expressions/parentheses-expression.d.ts +6 -0
- package/typings/common/filter/ast/index.d.ts +16 -0
- package/typings/common/filter/ast/terms/boolean-literal.d.ts +5 -0
- package/typings/common/filter/ast/terms/date-literal.d.ts +6 -0
- package/typings/common/filter/ast/terms/external-constant.d.ts +5 -0
- package/typings/common/filter/ast/terms/null-literal.d.ts +5 -0
- package/typings/common/filter/ast/terms/number-literal.d.ts +6 -0
- package/typings/common/filter/ast/terms/qualified-identifier.d.ts +4 -0
- package/typings/common/filter/ast/terms/string-literal.d.ts +5 -0
- package/typings/common/filter/ast/terms/time-literal.d.ts +6 -0
- package/typings/common/filter/build.d.ts +31 -0
- package/typings/common/filter/errors.d.ts +18 -0
- package/typings/common/filter/filter-tree-visitor.d.ts +32 -0
- package/typings/common/filter/index.d.ts +5 -0
- package/typings/common/filter/opra-error-listener.d.ts +8 -0
- package/typings/common/filter/parse.d.ts +2 -0
- package/typings/common/filter/utils.d.ts +2 -0
- package/typings/common/helpers/index.d.ts +1 -0
- package/typings/common/helpers/responsive-map.d.ts +18 -0
- package/typings/common/http/enums/http-headers.enum.d.ts +379 -0
- package/typings/common/http/enums/http-status.enum.d.ts +290 -0
- package/typings/common/http/http-request.d.ts +34 -0
- package/typings/common/http/index.d.ts +6 -0
- package/typings/common/http/interfaces/client-http-headers.interface.d.ts +65 -0
- package/typings/common/http/interfaces/server-http-headers.interface.d.ts +1 -0
- package/typings/common/http/multipart/batch-multipart.d.ts +31 -0
- package/typings/common/http/multipart/http-request-content.d.ts +8 -0
- package/typings/common/http/multipart/http-response-content.d.ts +7 -0
- package/typings/common/http/multipart/index.d.ts +1 -0
- package/typings/common/http/utils/normalize-headers.d.ts +1 -0
- package/typings/common/i18n/i18n.d.ts +28 -0
- package/typings/common/i18n/index.d.ts +5 -0
- package/typings/common/i18n/string-utils.d.ts +2 -0
- package/typings/common/i18n/translate.d.ts +4 -0
- package/typings/common/index.d.ts +10 -0
- package/typings/common/schema/constants.d.ts +8 -0
- package/typings/common/schema/decorators/opr-collection-resource.decorator.d.ts +8 -0
- package/typings/common/schema/decorators/opr-complex-type.decorator.d.ts +6 -0
- package/typings/common/schema/decorators/opr-field.decorator.d.ts +3 -0
- package/typings/common/schema/decorators/opr-resolver.decorator.d.ts +8 -0
- package/typings/common/schema/decorators/opr-simple-type.decorator.d.ts +6 -0
- package/typings/common/schema/decorators/opr-singleton-resource.decorator.d.ts +8 -0
- package/typings/common/schema/implementation/data-type/builtin/any.type.d.ts +2 -0
- package/typings/common/schema/implementation/data-type/builtin/base64-binary.type.d.ts +2 -0
- package/typings/common/schema/implementation/data-type/builtin/bigint.type.d.ts +2 -0
- package/typings/common/schema/implementation/data-type/builtin/boolean.type.d.ts +2 -0
- package/typings/common/schema/implementation/data-type/builtin/date-string.type.d.ts +2 -0
- package/typings/common/schema/implementation/data-type/builtin/date.type.d.ts +2 -0
- package/typings/common/schema/implementation/data-type/builtin/guid.type.d.ts +2 -0
- package/typings/common/schema/implementation/data-type/builtin/integer.type.d.ts +2 -0
- package/typings/common/schema/implementation/data-type/builtin/number.type.d.ts +2 -0
- package/typings/common/schema/implementation/data-type/builtin/object.type.d.ts +2 -0
- package/typings/common/schema/implementation/data-type/builtin/string.type.d.ts +2 -0
- package/typings/common/schema/implementation/data-type/builtin-data-types.d.ts +4 -0
- package/typings/common/schema/implementation/data-type/complex-type.d.ts +29 -0
- package/typings/common/schema/implementation/data-type/data-type.d.ts +16 -0
- package/typings/common/schema/implementation/data-type/simple-type.d.ts +12 -0
- package/typings/common/schema/implementation/data-type/union-type.d.ts +16 -0
- package/typings/common/schema/implementation/document-builder.d.ts +16 -0
- package/typings/common/schema/implementation/opra-document.d.ts +44 -0
- package/typings/common/schema/implementation/query/collection-count-query.d.ts +14 -0
- package/typings/common/schema/implementation/query/collection-create-query.d.ts +18 -0
- package/typings/common/schema/implementation/query/collection-delete-many-query.d.ts +14 -0
- package/typings/common/schema/implementation/query/collection-delete-query.d.ts +10 -0
- package/typings/common/schema/implementation/query/collection-get-query.d.ts +21 -0
- package/typings/common/schema/implementation/query/collection-search-query.d.ts +30 -0
- package/typings/common/schema/implementation/query/collection-update-many-query.d.ts +15 -0
- package/typings/common/schema/implementation/query/collection-update-query.d.ts +19 -0
- package/typings/common/schema/implementation/query/field-get-query.d.ts +30 -0
- package/typings/common/schema/implementation/query/index.d.ts +27 -0
- package/typings/common/schema/implementation/query/singleton-get-query.d.ts +20 -0
- package/typings/common/schema/implementation/resource/collection-resource-info.d.ts +19 -0
- package/typings/common/schema/implementation/resource/container-resource-info.d.ts +13 -0
- package/typings/common/schema/implementation/resource/resource-info.d.ts +17 -0
- package/typings/common/schema/implementation/resource/singleton-resource-info.d.ts +14 -0
- package/typings/common/schema/implementation/schema-builder/extract-resource-metadata.util.d.ts +3 -0
- package/typings/common/schema/implementation/schema-builder/extract-type-metadata.util.d.ts +4 -0
- package/typings/common/schema/index.d.ts +25 -0
- package/typings/common/schema/interfaces/child-field-query.interface.d.ts +4 -0
- package/typings/common/schema/interfaces/data-type.metadata.d.ts +18 -0
- package/typings/common/schema/interfaces/resource-container.interface.d.ts +8 -0
- package/typings/common/schema/interfaces/resource.metadata.d.ts +18 -0
- package/typings/common/schema/opra-schema.definition.d.ts +178 -0
- package/typings/common/schema/type-helpers/extend-type.helper.d.ts +3 -0
- package/typings/common/schema/type-helpers/mixin-type.helper.d.ts +2 -0
- package/typings/common/schema/type-helpers/mixin.utils.d.ts +3 -0
- package/typings/common/schema/types.d.ts +14 -0
- package/typings/common/schema/utils/class.utils.d.ts +2 -0
- package/typings/common/schema/utils/clone-object.util.d.ts +1 -0
- package/typings/common/schema/utils/inspect.util.d.ts +4 -0
- package/typings/common/schema/utils/normalize-field-array.util.d.ts +3 -0
- package/typings/common/schema/utils/path-to-tree.util.d.ts +4 -0
- package/typings/common/schema/utils/string-compare.util.d.ts +1 -0
- package/typings/common/url/formats/boolean-format.d.ts +5 -0
- package/typings/common/url/formats/date-format.d.ts +16 -0
- package/typings/common/url/formats/filter-format.d.ts +6 -0
- package/typings/common/url/formats/format.d.ts +4 -0
- package/typings/common/url/formats/integer-format.d.ts +9 -0
- package/typings/common/url/formats/number-format.d.ts +12 -0
- package/typings/common/url/formats/string-format.d.ts +14 -0
- package/typings/common/url/index.d.ts +5 -0
- package/typings/common/url/opra-url-path-component.d.ts +15 -0
- package/typings/common/url/opra-url-path.d.ts +30 -0
- package/typings/common/url/opra-url-search-params.d.ts +44 -0
- package/typings/common/url/opra-url.d.ts +79 -0
- package/typings/common/url/utils/path-utils.d.ts +8 -0
- package/typings/common/utils/index.d.ts +3 -0
- package/typings/common/utils/is-url.d.ts +1 -0
- package/typings/common/utils/path-to-tree.d.ts +4 -0
- package/typings/common/utils/type-guards.d.ts +9 -0
- package/typings/http/http-client.d.ts +1 -1
- package/typings/http/http-collection-service.d.ts +1 -1
- package/typings/http/http-request.d.ts +1 -1
- package/typings/http/http-singleton-service.d.ts +1 -1
- package/typings/http/http-types.d.ts +1 -1
- package/typings/http/requests/batch-request.d.ts +1 -1
- package/typings/http/requests/collection-create-request.d.ts +1 -1
- package/typings/http/requests/collection-delete-many-request.d.ts +1 -1
- package/typings/http/requests/collection-delete-request.d.ts +1 -1
- package/typings/http/requests/collection-get-request.d.ts +1 -1
- package/typings/http/requests/collection-search-request.d.ts +1 -1
- package/typings/http/requests/collection-update-many-request.d.ts +1 -1
- package/typings/http/requests/collection-update-request.d.ts +1 -1
- package/typings/http/requests/http-singleton-get-request.d.ts +1 -1
- package/typings/interfaces/http-options.interface.d.ts +1 -1
- package/typings/interfaces/http-request-config.interface.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opra/client",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.4",
|
|
4
4
|
"description": "Opra Client package",
|
|
5
5
|
"author": "Panates",
|
|
6
6
|
"license": "MIT",
|
|
@@ -23,7 +23,28 @@
|
|
|
23
23
|
"default": "./esm/index.min.mjs"
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
|
-
"dependencies": {
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@browsery/antlr4": "^0.0.2",
|
|
28
|
+
"@browsery/fs": "^0.0.2",
|
|
29
|
+
"@browsery/highland": "^0.0.2",
|
|
30
|
+
"@browsery/http-parser": "^0.0.2",
|
|
31
|
+
"@browsery/i18next": "^0.0.2",
|
|
32
|
+
"@browsery/stream": "^0.0.2",
|
|
33
|
+
"events": "^3.3.0",
|
|
34
|
+
"fast-tokenizer": "^1.2.0",
|
|
35
|
+
"lodash.omit": "^4.5.0",
|
|
36
|
+
"path-browserify": "^1.0.1",
|
|
37
|
+
"process": "^0.11.10",
|
|
38
|
+
"rxjs": "^7.8.0",
|
|
39
|
+
"ts-lib": "^0.0.5",
|
|
40
|
+
"putil-isplainobject": "^1.1.5",
|
|
41
|
+
"putil-merge": "^3.10.1",
|
|
42
|
+
"putil-promisify": "^1.8.6",
|
|
43
|
+
"putil-varhelpers": "^1.6.5",
|
|
44
|
+
"reflect-metadata": "^0.1.13",
|
|
45
|
+
"uid": "^2.0.1"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {},
|
|
27
48
|
"sideEffects": false,
|
|
28
49
|
"files": [
|
|
29
50
|
"typings/",
|
|
File without changes
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare namespace IssueSeverity {
|
|
2
|
+
enum Enum {
|
|
3
|
+
'fatal' = "fatal",
|
|
4
|
+
'error' = "error",
|
|
5
|
+
'warning' = "warning",
|
|
6
|
+
'info' = "info"
|
|
7
|
+
}
|
|
8
|
+
const name = "IssueSeverity";
|
|
9
|
+
const description = "Severity of the issue";
|
|
10
|
+
const Keys: string[];
|
|
11
|
+
type Type = keyof typeof Enum;
|
|
12
|
+
const descriptions: Record<Enum, string>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { OpraException } from '../opra-exception.js';
|
|
2
|
+
/**
|
|
3
|
+
* 400 Bad Request
|
|
4
|
+
* The server cannot or will not process the request due to something that is perceived to be a client error
|
|
5
|
+
* (e.g., malformed request syntax, invalid request message framing, or deceptive request routing).
|
|
6
|
+
*/
|
|
7
|
+
export declare class BadRequestError extends OpraException {
|
|
8
|
+
status: number;
|
|
9
|
+
setIssue(issue: any): void;
|
|
10
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { OpraException } from '../opra-exception.js';
|
|
2
|
+
/**
|
|
3
|
+
* 424 Failed Dependency
|
|
4
|
+
* The request failed due to failure of a previous request.
|
|
5
|
+
*/
|
|
6
|
+
export declare class FailedDependencyError extends OpraException {
|
|
7
|
+
status: number;
|
|
8
|
+
setIssue(issue: any): void;
|
|
9
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { OpraException } from '../opra-exception.js';
|
|
2
|
+
/**
|
|
3
|
+
* 403 Forbidden
|
|
4
|
+
* The client does not have access rights to the content; that is, it is unauthorized,
|
|
5
|
+
* so the server is refusing to give the requested resource. Unlike 401 Unauthorized,
|
|
6
|
+
* the client's identity is known to the server.
|
|
7
|
+
*/
|
|
8
|
+
export declare class ForbiddenError extends OpraException {
|
|
9
|
+
status: number;
|
|
10
|
+
setIssue(issue: any): void;
|
|
11
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { OpraException } from '../opra-exception.js';
|
|
2
|
+
/**
|
|
3
|
+
* 500 Internal Server Error
|
|
4
|
+
* The server has encountered a situation it does not know how to handle.
|
|
5
|
+
*/
|
|
6
|
+
export declare class InternalServerError extends OpraException {
|
|
7
|
+
status: number;
|
|
8
|
+
setIssue(issue: any): void;
|
|
9
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { OpraException } from '../opra-exception.js';
|
|
2
|
+
/**
|
|
3
|
+
* 405 Method Not Allowed
|
|
4
|
+
* The request method is known by the server but is not supported by the target resource.
|
|
5
|
+
* For example, an API may not allow calling DELETE to remove a resource.
|
|
6
|
+
*/
|
|
7
|
+
export declare class MethodNotAllowedError extends OpraException {
|
|
8
|
+
status: number;
|
|
9
|
+
setIssue(issue: any): void;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { OpraException } from '../opra-exception.js';
|
|
2
|
+
/**
|
|
3
|
+
* 406 Not Acceptable
|
|
4
|
+
* This response is sent when the web server, after performing server-driven content negotiation,
|
|
5
|
+
* doesn't find any content that conforms to the criteria given by the user agent.
|
|
6
|
+
*/
|
|
7
|
+
export declare class NotAcceptableError extends OpraException {
|
|
8
|
+
status: number;
|
|
9
|
+
setIssue(issue: any): void;
|
|
10
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { OpraException } from '../opra-exception.js';
|
|
2
|
+
/**
|
|
3
|
+
* 404 Not Found
|
|
4
|
+
* The server can not find the requested resource. In the browser, this means the URL is not recognized.
|
|
5
|
+
* In an API, this can also mean that the endpoint is valid but the resource itself does not exist.
|
|
6
|
+
* Servers may also send this response instead of 403 Forbidden to hide the existence of a resource
|
|
7
|
+
* from an unauthorized client. This response code is probably the most well known due to its
|
|
8
|
+
* frequent occurrence on the web.
|
|
9
|
+
*/
|
|
10
|
+
export declare class NotFoundError extends OpraException {
|
|
11
|
+
status: number;
|
|
12
|
+
setIssue(issue: any): void;
|
|
13
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { OpraException } from '../opra-exception.js';
|
|
2
|
+
/**
|
|
3
|
+
* 401 Unauthorized
|
|
4
|
+
* Although the HTTP standard specifies "unauthorized", semantically this response means "unauthenticated".
|
|
5
|
+
* That is, the client must authenticate itself to get the requested response.
|
|
6
|
+
*/
|
|
7
|
+
export declare class UnauthorizedError extends OpraException {
|
|
8
|
+
status: number;
|
|
9
|
+
setIssue(issue: any): void;
|
|
10
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { OpraException } from '../opra-exception.js';
|
|
2
|
+
/**
|
|
3
|
+
* 422 Unprocessable Entity
|
|
4
|
+
* The request was well-formed but was unable to be followed due to semantic errors.
|
|
5
|
+
*/
|
|
6
|
+
export declare class UnprocessableEntityError extends OpraException {
|
|
7
|
+
status: number;
|
|
8
|
+
setIssue(issue: any): void;
|
|
9
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export * from './opra-exception.js';
|
|
2
|
+
export * from './error-issue.js';
|
|
3
|
+
export * from './wrap-exception.js';
|
|
4
|
+
export * from './enums/issue-severity.enum.js';
|
|
5
|
+
export * from './http-errors/bad-request.error.js';
|
|
6
|
+
export * from './http-errors/failed-dependency.error.js';
|
|
7
|
+
export * from './http-errors/forbidden.error.js';
|
|
8
|
+
export * from './http-errors/internal-server.error.js';
|
|
9
|
+
export * from './http-errors/method-not-allowed.error.js';
|
|
10
|
+
export * from './http-errors/not-acceptable.error.js';
|
|
11
|
+
export * from './http-errors/not-found.error.js';
|
|
12
|
+
export * from './http-errors/unauthorized.error.js';
|
|
13
|
+
export * from './http-errors/unprocessable-entity.error.js';
|
|
14
|
+
export * from './resource-errors/resource-conflict.error.js';
|
|
15
|
+
export * from './resource-errors/resource-not-found.error.js';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ErrorIssue } from './error-issue.js';
|
|
2
|
+
/**
|
|
3
|
+
* Defines the base Opra exception, which is handled by the default Exceptions Handler.
|
|
4
|
+
*/
|
|
5
|
+
export declare class OpraException extends Error {
|
|
6
|
+
protected _issue: ErrorIssue;
|
|
7
|
+
status: number;
|
|
8
|
+
cause?: Error;
|
|
9
|
+
constructor(issue?: string | Partial<ErrorIssue>, cause?: Error);
|
|
10
|
+
get issue(): ErrorIssue;
|
|
11
|
+
setIssue(issue: Partial<ErrorIssue>): void;
|
|
12
|
+
setStatus(status: number): this;
|
|
13
|
+
protected _initName(): void;
|
|
14
|
+
protected _init(issue: Error | Partial<ErrorIssue> | string): void;
|
|
15
|
+
}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { ATN, CharStream, DFA, Lexer } from "antlr4";
|
|
2
|
+
export default class OpraFilterLexer extends Lexer {
|
|
3
|
+
static readonly T__0 = 1;
|
|
4
|
+
static readonly T__1 = 2;
|
|
5
|
+
static readonly T__2 = 3;
|
|
6
|
+
static readonly T__3 = 4;
|
|
7
|
+
static readonly T__4 = 5;
|
|
8
|
+
static readonly T__5 = 6;
|
|
9
|
+
static readonly T__6 = 7;
|
|
10
|
+
static readonly T__7 = 8;
|
|
11
|
+
static readonly T__8 = 9;
|
|
12
|
+
static readonly T__9 = 10;
|
|
13
|
+
static readonly T__10 = 11;
|
|
14
|
+
static readonly T__11 = 12;
|
|
15
|
+
static readonly T__12 = 13;
|
|
16
|
+
static readonly T__13 = 14;
|
|
17
|
+
static readonly T__14 = 15;
|
|
18
|
+
static readonly T__15 = 16;
|
|
19
|
+
static readonly T__16 = 17;
|
|
20
|
+
static readonly T__17 = 18;
|
|
21
|
+
static readonly T__18 = 19;
|
|
22
|
+
static readonly T__19 = 20;
|
|
23
|
+
static readonly T__20 = 21;
|
|
24
|
+
static readonly T__21 = 22;
|
|
25
|
+
static readonly T__22 = 23;
|
|
26
|
+
static readonly T__23 = 24;
|
|
27
|
+
static readonly T__24 = 25;
|
|
28
|
+
static readonly T__25 = 26;
|
|
29
|
+
static readonly T__26 = 27;
|
|
30
|
+
static readonly T__27 = 28;
|
|
31
|
+
static readonly T__28 = 29;
|
|
32
|
+
static readonly T__29 = 30;
|
|
33
|
+
static readonly T__30 = 31;
|
|
34
|
+
static readonly T__31 = 32;
|
|
35
|
+
static readonly T__32 = 33;
|
|
36
|
+
static readonly T__33 = 34;
|
|
37
|
+
static readonly T__34 = 35;
|
|
38
|
+
static readonly T__35 = 36;
|
|
39
|
+
static readonly T__36 = 37;
|
|
40
|
+
static readonly T__37 = 38;
|
|
41
|
+
static readonly T__38 = 39;
|
|
42
|
+
static readonly T__39 = 40;
|
|
43
|
+
static readonly T__40 = 41;
|
|
44
|
+
static readonly T__41 = 42;
|
|
45
|
+
static readonly T__42 = 43;
|
|
46
|
+
static readonly T__43 = 44;
|
|
47
|
+
static readonly T__44 = 45;
|
|
48
|
+
static readonly T__45 = 46;
|
|
49
|
+
static readonly DATE = 47;
|
|
50
|
+
static readonly DATETIME = 48;
|
|
51
|
+
static readonly TIME = 49;
|
|
52
|
+
static readonly IDENTIFIER = 50;
|
|
53
|
+
static readonly STRING = 51;
|
|
54
|
+
static readonly NUMBER = 52;
|
|
55
|
+
static readonly INTEGER = 53;
|
|
56
|
+
static readonly WHITESPACE = 54;
|
|
57
|
+
static readonly COMMENT = 55;
|
|
58
|
+
static readonly LINE_COMMENT = 56;
|
|
59
|
+
static readonly EOF: number;
|
|
60
|
+
static readonly channelNames: string[];
|
|
61
|
+
static readonly literalNames: (string | null)[];
|
|
62
|
+
static readonly symbolicNames: (string | null)[];
|
|
63
|
+
static readonly modeNames: string[];
|
|
64
|
+
static readonly ruleNames: string[];
|
|
65
|
+
constructor(input: CharStream);
|
|
66
|
+
get grammarFileName(): string;
|
|
67
|
+
get literalNames(): (string | null)[];
|
|
68
|
+
get symbolicNames(): (string | null)[];
|
|
69
|
+
get ruleNames(): string[];
|
|
70
|
+
get serializedATN(): number[];
|
|
71
|
+
get channelNames(): string[];
|
|
72
|
+
get modeNames(): string[];
|
|
73
|
+
static readonly _serializedATN: number[];
|
|
74
|
+
private static __ATN;
|
|
75
|
+
static get _ATN(): ATN;
|
|
76
|
+
static DecisionsToDFA: DFA[];
|
|
77
|
+
}
|