@angular-devkit/core 14.0.0-next.8 → 14.0.0-rc.1

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.
@@ -1,67 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright Google LLC All Rights Reserved.
4
- *
5
- * Use of this source code is governed by an MIT-style license that can be
6
- * found in the LICENSE file at https://angular.io/license
7
- */
8
- import { JsonArray, JsonObject } from './utils';
9
- export interface Position {
10
- readonly offset: number;
11
- readonly line: number;
12
- readonly character: number;
13
- }
14
- export declare type JsonAstNode = JsonAstNumber | JsonAstString | JsonAstIdentifier | JsonAstArray | JsonAstObject | JsonAstConstantFalse | JsonAstConstantNull | JsonAstConstantTrue;
15
- export interface JsonAstNodeBase {
16
- readonly start: Position;
17
- readonly end: Position;
18
- readonly text: string;
19
- readonly comments?: (JsonAstComment | JsonAstMultilineComment)[];
20
- }
21
- export interface JsonAstNumber extends JsonAstNodeBase {
22
- readonly kind: 'number';
23
- readonly value: number;
24
- }
25
- export interface JsonAstString extends JsonAstNodeBase {
26
- readonly kind: 'string';
27
- readonly value: string;
28
- }
29
- export interface JsonAstIdentifier extends JsonAstNodeBase {
30
- readonly kind: 'identifier';
31
- readonly value: string;
32
- }
33
- export interface JsonAstArray extends JsonAstNodeBase {
34
- readonly kind: 'array';
35
- readonly elements: JsonAstNode[];
36
- readonly value: JsonArray;
37
- }
38
- export interface JsonAstKeyValue extends JsonAstNodeBase {
39
- readonly kind: 'keyvalue';
40
- readonly key: JsonAstString | JsonAstIdentifier;
41
- readonly value: JsonAstNode;
42
- }
43
- export interface JsonAstObject extends JsonAstNodeBase {
44
- readonly kind: 'object';
45
- readonly properties: JsonAstKeyValue[];
46
- readonly value: JsonObject;
47
- }
48
- export interface JsonAstConstantFalse extends JsonAstNodeBase {
49
- readonly kind: 'false';
50
- readonly value: false;
51
- }
52
- export interface JsonAstConstantNull extends JsonAstNodeBase {
53
- readonly kind: 'null';
54
- readonly value: null;
55
- }
56
- export interface JsonAstConstantTrue extends JsonAstNodeBase {
57
- readonly kind: 'true';
58
- readonly value: true;
59
- }
60
- export interface JsonAstMultilineComment extends JsonAstNodeBase {
61
- readonly kind: 'multicomment';
62
- readonly content: string;
63
- }
64
- export interface JsonAstComment extends JsonAstNodeBase {
65
- readonly kind: 'comment';
66
- readonly content: string;
67
- }
@@ -1,9 +0,0 @@
1
- "use strict";
2
- /**
3
- * @license
4
- * Copyright Google LLC All Rights Reserved.
5
- *
6
- * Use of this source code is governed by an MIT-style license that can be
7
- * found in the LICENSE file at https://angular.io/license
8
- */
9
- Object.defineProperty(exports, "__esModule", { value: true });