@nowline/core 0.2.0

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.
Files changed (69) hide show
  1. package/LICENSE +190 -0
  2. package/README.md +84 -0
  3. package/dist/generated/ast.d.ts +958 -0
  4. package/dist/generated/ast.d.ts.map +1 -0
  5. package/dist/generated/ast.js +795 -0
  6. package/dist/generated/ast.js.map +1 -0
  7. package/dist/generated/grammar.d.ts +7 -0
  8. package/dist/generated/grammar.d.ts.map +1 -0
  9. package/dist/generated/grammar.js +2509 -0
  10. package/dist/generated/grammar.js.map +1 -0
  11. package/dist/generated/module.d.ts +14 -0
  12. package/dist/generated/module.d.ts.map +1 -0
  13. package/dist/generated/module.js +21 -0
  14. package/dist/generated/module.js.map +1 -0
  15. package/dist/i18n/codes.d.ts +3 -0
  16. package/dist/i18n/codes.d.ts.map +1 -0
  17. package/dist/i18n/codes.js +54 -0
  18. package/dist/i18n/codes.js.map +1 -0
  19. package/dist/i18n/index.d.ts +17 -0
  20. package/dist/i18n/index.d.ts.map +1 -0
  21. package/dist/i18n/index.js +82 -0
  22. package/dist/i18n/index.js.map +1 -0
  23. package/dist/i18n/messages.en.d.ts +96 -0
  24. package/dist/i18n/messages.en.d.ts.map +1 -0
  25. package/dist/i18n/messages.en.js +57 -0
  26. package/dist/i18n/messages.en.js.map +1 -0
  27. package/dist/i18n/messages.fr-CA.d.ts +3 -0
  28. package/dist/i18n/messages.fr-CA.d.ts.map +1 -0
  29. package/dist/i18n/messages.fr-CA.js +11 -0
  30. package/dist/i18n/messages.fr-CA.js.map +1 -0
  31. package/dist/i18n/messages.fr-FR.d.ts +3 -0
  32. package/dist/i18n/messages.fr-FR.d.ts.map +1 -0
  33. package/dist/i18n/messages.fr-FR.js +11 -0
  34. package/dist/i18n/messages.fr-FR.js.map +1 -0
  35. package/dist/i18n/messages.fr.d.ts +3 -0
  36. package/dist/i18n/messages.fr.d.ts.map +1 -0
  37. package/dist/i18n/messages.fr.js +55 -0
  38. package/dist/i18n/messages.fr.js.map +1 -0
  39. package/dist/index.d.ts +9 -0
  40. package/dist/index.d.ts.map +1 -0
  41. package/dist/index.js +8 -0
  42. package/dist/index.js.map +1 -0
  43. package/dist/language/include-resolver.d.ts +46 -0
  44. package/dist/language/include-resolver.d.ts.map +1 -0
  45. package/dist/language/include-resolver.js +306 -0
  46. package/dist/language/include-resolver.js.map +1 -0
  47. package/dist/language/nowline-module.d.ts +18 -0
  48. package/dist/language/nowline-module.d.ts.map +1 -0
  49. package/dist/language/nowline-module.js +63 -0
  50. package/dist/language/nowline-module.js.map +1 -0
  51. package/dist/language/nowline-validator.d.ts +65 -0
  52. package/dist/language/nowline-validator.d.ts.map +1 -0
  53. package/dist/language/nowline-validator.js +1654 -0
  54. package/dist/language/nowline-validator.js.map +1 -0
  55. package/package.json +37 -0
  56. package/src/generated/ast.ts +1178 -0
  57. package/src/generated/grammar.ts +2511 -0
  58. package/src/generated/module.ts +25 -0
  59. package/src/i18n/codes.ts +102 -0
  60. package/src/i18n/index.ts +102 -0
  61. package/src/i18n/messages.en.ts +86 -0
  62. package/src/i18n/messages.fr-CA.ts +13 -0
  63. package/src/i18n/messages.fr-FR.ts +13 -0
  64. package/src/i18n/messages.fr.ts +91 -0
  65. package/src/index.ts +22 -0
  66. package/src/language/include-resolver.ts +470 -0
  67. package/src/language/nowline-module.ts +114 -0
  68. package/src/language/nowline-validator.ts +1991 -0
  69. package/src/language/nowline.langium +217 -0
@@ -0,0 +1,958 @@
1
+ /******************************************************************************
2
+ * This file was generated by langium-cli 4.2.0.
3
+ * DO NOT EDIT MANUALLY!
4
+ ******************************************************************************/
5
+ import * as langium from 'langium';
6
+ export declare const NowlineTerminals: {
7
+ INDENT: RegExp;
8
+ DEDENT: RegExp;
9
+ INCLUDE_OPTION_KEY: RegExp;
10
+ URL: RegExp;
11
+ STRING: RegExp;
12
+ DATE_LITERAL: RegExp;
13
+ DURATION_LITERAL: RegExp;
14
+ PERCENTAGE: RegExp;
15
+ COLOR_HEX: RegExp;
16
+ DECIMAL: RegExp;
17
+ INTEGER: RegExp;
18
+ PROPERTY_KEY_WITH_COLON: RegExp;
19
+ ID: RegExp;
20
+ WS: RegExp;
21
+ NL: RegExp;
22
+ SL_COMMENT: RegExp;
23
+ ML_COMMENT: RegExp;
24
+ LINE_CONTINUATION: RegExp;
25
+ };
26
+ export type NowlineTerminalNames = keyof typeof NowlineTerminals;
27
+ export type NowlineKeywordNames = "," | "[" | "]" | "anchor" | "calendar" | "config" | "default" | "description" | "footnote" | "group" | "include" | "item" | "label" | "milestone" | "nowline" | "parallel" | "person" | "roadmap" | "scale" | "size" | "status" | "style" | "swimlane" | "symbol" | "team";
28
+ export type NowlineTokenNames = NowlineTerminalNames | NowlineKeywordNames;
29
+ export interface AnchorDeclaration extends langium.AstNode {
30
+ readonly $container: NowlineFile;
31
+ readonly $type: 'AnchorDeclaration';
32
+ description?: DescriptionDirective;
33
+ name?: string;
34
+ properties: Array<EntityProperty>;
35
+ title?: string;
36
+ }
37
+ export declare const AnchorDeclaration: {
38
+ readonly $type: "AnchorDeclaration";
39
+ readonly description: "description";
40
+ readonly name: "name";
41
+ readonly properties: "properties";
42
+ readonly title: "title";
43
+ };
44
+ export declare function isAnchorDeclaration(item: unknown): item is AnchorDeclaration;
45
+ export interface BlockProperty extends langium.AstNode {
46
+ readonly $container: CalendarBlock | NowlineDirective | ScaleBlock;
47
+ readonly $type: 'BlockProperty';
48
+ key: string;
49
+ value: BlockPropertyValue;
50
+ }
51
+ export declare const BlockProperty: {
52
+ readonly $type: "BlockProperty";
53
+ readonly key: "key";
54
+ readonly value: "value";
55
+ };
56
+ export declare function isBlockProperty(item: unknown): item is BlockProperty;
57
+ export type BlockPropertyValue = string;
58
+ export declare function isBlockPropertyValue(item: unknown): item is BlockPropertyValue;
59
+ export interface CalendarBlock extends langium.AstNode {
60
+ readonly $container: NowlineFile;
61
+ readonly $type: 'CalendarBlock';
62
+ properties: Array<BlockProperty>;
63
+ }
64
+ export declare const CalendarBlock: {
65
+ readonly $type: "CalendarBlock";
66
+ readonly properties: "properties";
67
+ };
68
+ export declare function isCalendarBlock(item: unknown): item is CalendarBlock;
69
+ export type ConfigEntry = CalendarBlock | DefaultDeclaration | ScaleBlock | StyleDeclaration | SymbolDeclaration;
70
+ export declare const ConfigEntry: {
71
+ readonly $type: "ConfigEntry";
72
+ };
73
+ export declare function isConfigEntry(item: unknown): item is ConfigEntry;
74
+ export interface DefaultDeclaration extends langium.AstNode {
75
+ readonly $container: NowlineFile;
76
+ readonly $type: 'DefaultDeclaration';
77
+ entityType: DefaultEntityType;
78
+ properties: Array<EntityProperty>;
79
+ }
80
+ export declare const DefaultDeclaration: {
81
+ readonly $type: "DefaultDeclaration";
82
+ readonly entityType: "entityType";
83
+ readonly properties: "properties";
84
+ };
85
+ export declare function isDefaultDeclaration(item: unknown): item is DefaultDeclaration;
86
+ export type DefaultEntityType = 'anchor' | 'footnote' | 'group' | 'item' | 'label' | 'milestone' | 'parallel' | 'roadmap' | 'swimlane';
87
+ export declare function isDefaultEntityType(item: unknown): item is DefaultEntityType;
88
+ export interface DescriptionDirective extends langium.AstNode {
89
+ readonly $container: AnchorDeclaration | FootnoteDeclaration | GroupBlock | ItemDeclaration | LabelDeclaration | MilestoneDeclaration | ParallelBlock | PersonDeclaration | SizeDeclaration | StatusDeclaration | SwimlaneDeclaration | SymbolDeclaration | TeamDeclaration;
90
+ readonly $type: 'DescriptionDirective';
91
+ text: string;
92
+ }
93
+ export declare const DescriptionDirective: {
94
+ readonly $type: "DescriptionDirective";
95
+ readonly text: "text";
96
+ };
97
+ export declare function isDescriptionDirective(item: unknown): item is DescriptionDirective;
98
+ export interface EntityProperty extends langium.AstNode {
99
+ readonly $container: AnchorDeclaration | DefaultDeclaration | FootnoteDeclaration | GroupBlock | ItemDeclaration | LabelDeclaration | MilestoneDeclaration | ParallelBlock | PersonDeclaration | RoadmapDeclaration | SizeDeclaration | StatusDeclaration | SwimlaneDeclaration | SymbolDeclaration | TeamDeclaration;
100
+ readonly $type: 'EntityProperty';
101
+ key: string;
102
+ value?: PropertyAtom;
103
+ values: Array<PropertyAtom>;
104
+ }
105
+ export declare const EntityProperty: {
106
+ readonly $type: "EntityProperty";
107
+ readonly key: "key";
108
+ readonly value: "value";
109
+ readonly values: "values";
110
+ };
111
+ export declare function isEntityProperty(item: unknown): item is EntityProperty;
112
+ export interface FootnoteDeclaration extends langium.AstNode {
113
+ readonly $container: NowlineFile;
114
+ readonly $type: 'FootnoteDeclaration';
115
+ description?: DescriptionDirective;
116
+ name?: string;
117
+ properties: Array<EntityProperty>;
118
+ title?: string;
119
+ }
120
+ export declare const FootnoteDeclaration: {
121
+ readonly $type: "FootnoteDeclaration";
122
+ readonly description: "description";
123
+ readonly name: "name";
124
+ readonly properties: "properties";
125
+ readonly title: "title";
126
+ };
127
+ export declare function isFootnoteDeclaration(item: unknown): item is FootnoteDeclaration;
128
+ export interface GroupBlock extends langium.AstNode {
129
+ readonly $container: GroupBlock | ParallelBlock | SwimlaneDeclaration;
130
+ readonly $type: 'GroupBlock';
131
+ content: Array<GroupContent>;
132
+ name?: string;
133
+ properties: Array<EntityProperty>;
134
+ title?: string;
135
+ }
136
+ export declare const GroupBlock: {
137
+ readonly $type: "GroupBlock";
138
+ readonly content: "content";
139
+ readonly name: "name";
140
+ readonly properties: "properties";
141
+ readonly title: "title";
142
+ };
143
+ export declare function isGroupBlock(item: unknown): item is GroupBlock;
144
+ export type GroupContent = DescriptionDirective | GroupBlock | ItemDeclaration | ParallelBlock;
145
+ export declare const GroupContent: {
146
+ readonly $type: "GroupContent";
147
+ };
148
+ export declare function isGroupContent(item: unknown): item is GroupContent;
149
+ export interface IncludeDeclaration extends langium.AstNode {
150
+ readonly $container: NowlineFile;
151
+ readonly $type: 'IncludeDeclaration';
152
+ options: Array<IncludeOption>;
153
+ path: string;
154
+ }
155
+ export declare const IncludeDeclaration: {
156
+ readonly $type: "IncludeDeclaration";
157
+ readonly options: "options";
158
+ readonly path: "path";
159
+ };
160
+ export declare function isIncludeDeclaration(item: unknown): item is IncludeDeclaration;
161
+ export interface IncludeOption extends langium.AstNode {
162
+ readonly $container: IncludeDeclaration;
163
+ readonly $type: 'IncludeOption';
164
+ key: string;
165
+ value: string;
166
+ }
167
+ export declare const IncludeOption: {
168
+ readonly $type: "IncludeOption";
169
+ readonly key: "key";
170
+ readonly value: "value";
171
+ };
172
+ export declare function isIncludeOption(item: unknown): item is IncludeOption;
173
+ export interface ItemDeclaration extends langium.AstNode {
174
+ readonly $container: GroupBlock | ParallelBlock | SwimlaneDeclaration;
175
+ readonly $type: 'ItemDeclaration';
176
+ description?: DescriptionDirective;
177
+ name?: string;
178
+ properties: Array<EntityProperty>;
179
+ title?: string;
180
+ }
181
+ export declare const ItemDeclaration: {
182
+ readonly $type: "ItemDeclaration";
183
+ readonly description: "description";
184
+ readonly name: "name";
185
+ readonly properties: "properties";
186
+ readonly title: "title";
187
+ };
188
+ export declare function isItemDeclaration(item: unknown): item is ItemDeclaration;
189
+ export interface LabelDeclaration extends langium.AstNode {
190
+ readonly $container: NowlineFile;
191
+ readonly $type: 'LabelDeclaration';
192
+ description?: DescriptionDirective;
193
+ name?: string;
194
+ properties: Array<EntityProperty>;
195
+ title?: string;
196
+ }
197
+ export declare const LabelDeclaration: {
198
+ readonly $type: "LabelDeclaration";
199
+ readonly description: "description";
200
+ readonly name: "name";
201
+ readonly properties: "properties";
202
+ readonly title: "title";
203
+ };
204
+ export declare function isLabelDeclaration(item: unknown): item is LabelDeclaration;
205
+ export interface MilestoneDeclaration extends langium.AstNode {
206
+ readonly $container: NowlineFile;
207
+ readonly $type: 'MilestoneDeclaration';
208
+ description?: DescriptionDirective;
209
+ name?: string;
210
+ properties: Array<EntityProperty>;
211
+ title?: string;
212
+ }
213
+ export declare const MilestoneDeclaration: {
214
+ readonly $type: "MilestoneDeclaration";
215
+ readonly description: "description";
216
+ readonly name: "name";
217
+ readonly properties: "properties";
218
+ readonly title: "title";
219
+ };
220
+ export declare function isMilestoneDeclaration(item: unknown): item is MilestoneDeclaration;
221
+ export interface NowlineDirective extends langium.AstNode {
222
+ readonly $container: NowlineFile;
223
+ readonly $type: 'NowlineDirective';
224
+ properties: Array<BlockProperty>;
225
+ version: string;
226
+ }
227
+ export declare const NowlineDirective: {
228
+ readonly $type: "NowlineDirective";
229
+ readonly properties: "properties";
230
+ readonly version: "version";
231
+ };
232
+ export declare function isNowlineDirective(item: unknown): item is NowlineDirective;
233
+ export interface NowlineFile extends langium.AstNode {
234
+ readonly $type: 'NowlineFile';
235
+ configEntries: Array<ConfigEntry>;
236
+ directive?: NowlineDirective;
237
+ hasConfig: boolean;
238
+ includes: Array<IncludeDeclaration>;
239
+ roadmapDecl?: RoadmapDeclaration;
240
+ roadmapEntries: Array<RoadmapEntry>;
241
+ }
242
+ export declare const NowlineFile: {
243
+ readonly $type: "NowlineFile";
244
+ readonly configEntries: "configEntries";
245
+ readonly directive: "directive";
246
+ readonly hasConfig: "hasConfig";
247
+ readonly includes: "includes";
248
+ readonly roadmapDecl: "roadmapDecl";
249
+ readonly roadmapEntries: "roadmapEntries";
250
+ };
251
+ export declare function isNowlineFile(item: unknown): item is NowlineFile;
252
+ export interface ParallelBlock extends langium.AstNode {
253
+ readonly $container: GroupBlock | SwimlaneDeclaration;
254
+ readonly $type: 'ParallelBlock';
255
+ content: Array<ParallelContent>;
256
+ name?: string;
257
+ properties: Array<EntityProperty>;
258
+ title?: string;
259
+ }
260
+ export declare const ParallelBlock: {
261
+ readonly $type: "ParallelBlock";
262
+ readonly content: "content";
263
+ readonly name: "name";
264
+ readonly properties: "properties";
265
+ readonly title: "title";
266
+ };
267
+ export declare function isParallelBlock(item: unknown): item is ParallelBlock;
268
+ export type ParallelContent = DescriptionDirective | GroupBlock | ItemDeclaration;
269
+ export declare const ParallelContent: {
270
+ readonly $type: "ParallelContent";
271
+ };
272
+ export declare function isParallelContent(item: unknown): item is ParallelContent;
273
+ export interface PersonDeclaration extends langium.AstNode {
274
+ readonly $container: NowlineFile;
275
+ readonly $type: 'PersonDeclaration';
276
+ description?: DescriptionDirective;
277
+ name?: string;
278
+ properties: Array<EntityProperty>;
279
+ title?: string;
280
+ }
281
+ export declare const PersonDeclaration: {
282
+ readonly $type: "PersonDeclaration";
283
+ readonly description: "description";
284
+ readonly name: "name";
285
+ readonly properties: "properties";
286
+ readonly title: "title";
287
+ };
288
+ export declare function isPersonDeclaration(item: unknown): item is PersonDeclaration;
289
+ export interface PersonMemberRef extends langium.AstNode {
290
+ readonly $container: TeamDeclaration;
291
+ readonly $type: 'PersonMemberRef';
292
+ ref: string;
293
+ }
294
+ export declare const PersonMemberRef: {
295
+ readonly $type: "PersonMemberRef";
296
+ readonly ref: "ref";
297
+ };
298
+ export declare function isPersonMemberRef(item: unknown): item is PersonMemberRef;
299
+ export type PropertyAtom = 'person' | string;
300
+ export declare function isPropertyAtom(item: unknown): item is PropertyAtom;
301
+ export interface RoadmapDeclaration extends langium.AstNode {
302
+ readonly $container: NowlineFile;
303
+ readonly $type: 'RoadmapDeclaration';
304
+ name?: string;
305
+ properties: Array<EntityProperty>;
306
+ title?: string;
307
+ }
308
+ export declare const RoadmapDeclaration: {
309
+ readonly $type: "RoadmapDeclaration";
310
+ readonly name: "name";
311
+ readonly properties: "properties";
312
+ readonly title: "title";
313
+ };
314
+ export declare function isRoadmapDeclaration(item: unknown): item is RoadmapDeclaration;
315
+ export type RoadmapEntry = AnchorDeclaration | FootnoteDeclaration | LabelDeclaration | MilestoneDeclaration | PersonDeclaration | SizeDeclaration | StatusDeclaration | SwimlaneDeclaration | TeamDeclaration;
316
+ export declare const RoadmapEntry: {
317
+ readonly $type: "RoadmapEntry";
318
+ };
319
+ export declare function isRoadmapEntry(item: unknown): item is RoadmapEntry;
320
+ export interface ScaleBlock extends langium.AstNode {
321
+ readonly $container: NowlineFile;
322
+ readonly $type: 'ScaleBlock';
323
+ properties: Array<BlockProperty>;
324
+ }
325
+ export declare const ScaleBlock: {
326
+ readonly $type: "ScaleBlock";
327
+ readonly properties: "properties";
328
+ };
329
+ export declare function isScaleBlock(item: unknown): item is ScaleBlock;
330
+ export interface SizeDeclaration extends langium.AstNode {
331
+ readonly $container: NowlineFile;
332
+ readonly $type: 'SizeDeclaration';
333
+ description?: DescriptionDirective;
334
+ name?: string;
335
+ properties: Array<EntityProperty>;
336
+ title?: string;
337
+ }
338
+ export declare const SizeDeclaration: {
339
+ readonly $type: "SizeDeclaration";
340
+ readonly description: "description";
341
+ readonly name: "name";
342
+ readonly properties: "properties";
343
+ readonly title: "title";
344
+ };
345
+ export declare function isSizeDeclaration(item: unknown): item is SizeDeclaration;
346
+ export interface StatusDeclaration extends langium.AstNode {
347
+ readonly $container: NowlineFile;
348
+ readonly $type: 'StatusDeclaration';
349
+ description?: DescriptionDirective;
350
+ name?: string;
351
+ properties: Array<EntityProperty>;
352
+ title?: string;
353
+ }
354
+ export declare const StatusDeclaration: {
355
+ readonly $type: "StatusDeclaration";
356
+ readonly description: "description";
357
+ readonly name: "name";
358
+ readonly properties: "properties";
359
+ readonly title: "title";
360
+ };
361
+ export declare function isStatusDeclaration(item: unknown): item is StatusDeclaration;
362
+ export interface StyleDeclaration extends langium.AstNode {
363
+ readonly $container: NowlineFile;
364
+ readonly $type: 'StyleDeclaration';
365
+ name?: string;
366
+ properties: Array<StyleProperty>;
367
+ title?: string;
368
+ }
369
+ export declare const StyleDeclaration: {
370
+ readonly $type: "StyleDeclaration";
371
+ readonly name: "name";
372
+ readonly properties: "properties";
373
+ readonly title: "title";
374
+ };
375
+ export declare function isStyleDeclaration(item: unknown): item is StyleDeclaration;
376
+ export interface StyleProperty extends langium.AstNode {
377
+ readonly $container: StyleDeclaration;
378
+ readonly $type: 'StyleProperty';
379
+ key: string;
380
+ value: StylePropertyValue;
381
+ }
382
+ export declare const StyleProperty: {
383
+ readonly $type: "StyleProperty";
384
+ readonly key: "key";
385
+ readonly value: "value";
386
+ };
387
+ export declare function isStyleProperty(item: unknown): item is StyleProperty;
388
+ export type StylePropertyValue = 'person' | string;
389
+ export declare function isStylePropertyValue(item: unknown): item is StylePropertyValue;
390
+ export type SwimlaneContent = DescriptionDirective | GroupBlock | ItemDeclaration | ParallelBlock;
391
+ export declare const SwimlaneContent: {
392
+ readonly $type: "SwimlaneContent";
393
+ };
394
+ export declare function isSwimlaneContent(item: unknown): item is SwimlaneContent;
395
+ export interface SwimlaneDeclaration extends langium.AstNode {
396
+ readonly $container: NowlineFile;
397
+ readonly $type: 'SwimlaneDeclaration';
398
+ content: Array<SwimlaneContent>;
399
+ name?: string;
400
+ properties: Array<EntityProperty>;
401
+ title?: string;
402
+ }
403
+ export declare const SwimlaneDeclaration: {
404
+ readonly $type: "SwimlaneDeclaration";
405
+ readonly content: "content";
406
+ readonly name: "name";
407
+ readonly properties: "properties";
408
+ readonly title: "title";
409
+ };
410
+ export declare function isSwimlaneDeclaration(item: unknown): item is SwimlaneDeclaration;
411
+ export interface SymbolDeclaration extends langium.AstNode {
412
+ readonly $container: NowlineFile;
413
+ readonly $type: 'SymbolDeclaration';
414
+ description?: DescriptionDirective;
415
+ name?: string;
416
+ properties: Array<EntityProperty>;
417
+ title?: string;
418
+ }
419
+ export declare const SymbolDeclaration: {
420
+ readonly $type: "SymbolDeclaration";
421
+ readonly description: "description";
422
+ readonly name: "name";
423
+ readonly properties: "properties";
424
+ readonly title: "title";
425
+ };
426
+ export declare function isSymbolDeclaration(item: unknown): item is SymbolDeclaration;
427
+ export type TeamContent = DescriptionDirective | PersonMemberRef | TeamDeclaration;
428
+ export declare const TeamContent: {
429
+ readonly $type: "TeamContent";
430
+ };
431
+ export declare function isTeamContent(item: unknown): item is TeamContent;
432
+ export interface TeamDeclaration extends langium.AstNode {
433
+ readonly $container: NowlineFile | TeamDeclaration;
434
+ readonly $type: 'TeamDeclaration';
435
+ content: Array<TeamContent>;
436
+ name?: string;
437
+ properties: Array<EntityProperty>;
438
+ title?: string;
439
+ }
440
+ export declare const TeamDeclaration: {
441
+ readonly $type: "TeamDeclaration";
442
+ readonly content: "content";
443
+ readonly name: "name";
444
+ readonly properties: "properties";
445
+ readonly title: "title";
446
+ };
447
+ export declare function isTeamDeclaration(item: unknown): item is TeamDeclaration;
448
+ export type NowlineAstType = {
449
+ AnchorDeclaration: AnchorDeclaration;
450
+ BlockProperty: BlockProperty;
451
+ CalendarBlock: CalendarBlock;
452
+ ConfigEntry: ConfigEntry;
453
+ DefaultDeclaration: DefaultDeclaration;
454
+ DescriptionDirective: DescriptionDirective;
455
+ EntityProperty: EntityProperty;
456
+ FootnoteDeclaration: FootnoteDeclaration;
457
+ GroupBlock: GroupBlock;
458
+ GroupContent: GroupContent;
459
+ IncludeDeclaration: IncludeDeclaration;
460
+ IncludeOption: IncludeOption;
461
+ ItemDeclaration: ItemDeclaration;
462
+ LabelDeclaration: LabelDeclaration;
463
+ MilestoneDeclaration: MilestoneDeclaration;
464
+ NowlineDirective: NowlineDirective;
465
+ NowlineFile: NowlineFile;
466
+ ParallelBlock: ParallelBlock;
467
+ ParallelContent: ParallelContent;
468
+ PersonDeclaration: PersonDeclaration;
469
+ PersonMemberRef: PersonMemberRef;
470
+ RoadmapDeclaration: RoadmapDeclaration;
471
+ RoadmapEntry: RoadmapEntry;
472
+ ScaleBlock: ScaleBlock;
473
+ SizeDeclaration: SizeDeclaration;
474
+ StatusDeclaration: StatusDeclaration;
475
+ StyleDeclaration: StyleDeclaration;
476
+ StyleProperty: StyleProperty;
477
+ SwimlaneContent: SwimlaneContent;
478
+ SwimlaneDeclaration: SwimlaneDeclaration;
479
+ SymbolDeclaration: SymbolDeclaration;
480
+ TeamContent: TeamContent;
481
+ TeamDeclaration: TeamDeclaration;
482
+ };
483
+ export declare class NowlineAstReflection extends langium.AbstractAstReflection {
484
+ readonly types: {
485
+ readonly AnchorDeclaration: {
486
+ readonly name: "AnchorDeclaration";
487
+ readonly properties: {
488
+ readonly description: {
489
+ readonly name: "description";
490
+ };
491
+ readonly name: {
492
+ readonly name: "name";
493
+ };
494
+ readonly properties: {
495
+ readonly name: "properties";
496
+ readonly defaultValue: [];
497
+ };
498
+ readonly title: {
499
+ readonly name: "title";
500
+ };
501
+ };
502
+ readonly superTypes: ["RoadmapEntry"];
503
+ };
504
+ readonly BlockProperty: {
505
+ readonly name: "BlockProperty";
506
+ readonly properties: {
507
+ readonly key: {
508
+ readonly name: "key";
509
+ };
510
+ readonly value: {
511
+ readonly name: "value";
512
+ };
513
+ };
514
+ readonly superTypes: [];
515
+ };
516
+ readonly CalendarBlock: {
517
+ readonly name: "CalendarBlock";
518
+ readonly properties: {
519
+ readonly properties: {
520
+ readonly name: "properties";
521
+ readonly defaultValue: [];
522
+ };
523
+ };
524
+ readonly superTypes: ["ConfigEntry"];
525
+ };
526
+ readonly ConfigEntry: {
527
+ readonly name: "ConfigEntry";
528
+ readonly properties: {};
529
+ readonly superTypes: [];
530
+ };
531
+ readonly DefaultDeclaration: {
532
+ readonly name: "DefaultDeclaration";
533
+ readonly properties: {
534
+ readonly entityType: {
535
+ readonly name: "entityType";
536
+ };
537
+ readonly properties: {
538
+ readonly name: "properties";
539
+ readonly defaultValue: [];
540
+ };
541
+ };
542
+ readonly superTypes: ["ConfigEntry"];
543
+ };
544
+ readonly DescriptionDirective: {
545
+ readonly name: "DescriptionDirective";
546
+ readonly properties: {
547
+ readonly text: {
548
+ readonly name: "text";
549
+ };
550
+ };
551
+ readonly superTypes: ["GroupContent", "ParallelContent", "SwimlaneContent", "TeamContent"];
552
+ };
553
+ readonly EntityProperty: {
554
+ readonly name: "EntityProperty";
555
+ readonly properties: {
556
+ readonly key: {
557
+ readonly name: "key";
558
+ };
559
+ readonly value: {
560
+ readonly name: "value";
561
+ };
562
+ readonly values: {
563
+ readonly name: "values";
564
+ readonly defaultValue: [];
565
+ };
566
+ };
567
+ readonly superTypes: [];
568
+ };
569
+ readonly FootnoteDeclaration: {
570
+ readonly name: "FootnoteDeclaration";
571
+ readonly properties: {
572
+ readonly description: {
573
+ readonly name: "description";
574
+ };
575
+ readonly name: {
576
+ readonly name: "name";
577
+ };
578
+ readonly properties: {
579
+ readonly name: "properties";
580
+ readonly defaultValue: [];
581
+ };
582
+ readonly title: {
583
+ readonly name: "title";
584
+ };
585
+ };
586
+ readonly superTypes: ["RoadmapEntry"];
587
+ };
588
+ readonly GroupBlock: {
589
+ readonly name: "GroupBlock";
590
+ readonly properties: {
591
+ readonly content: {
592
+ readonly name: "content";
593
+ readonly defaultValue: [];
594
+ };
595
+ readonly name: {
596
+ readonly name: "name";
597
+ };
598
+ readonly properties: {
599
+ readonly name: "properties";
600
+ readonly defaultValue: [];
601
+ };
602
+ readonly title: {
603
+ readonly name: "title";
604
+ };
605
+ };
606
+ readonly superTypes: ["GroupContent", "ParallelContent", "SwimlaneContent"];
607
+ };
608
+ readonly GroupContent: {
609
+ readonly name: "GroupContent";
610
+ readonly properties: {};
611
+ readonly superTypes: [];
612
+ };
613
+ readonly IncludeDeclaration: {
614
+ readonly name: "IncludeDeclaration";
615
+ readonly properties: {
616
+ readonly options: {
617
+ readonly name: "options";
618
+ readonly defaultValue: [];
619
+ };
620
+ readonly path: {
621
+ readonly name: "path";
622
+ };
623
+ };
624
+ readonly superTypes: [];
625
+ };
626
+ readonly IncludeOption: {
627
+ readonly name: "IncludeOption";
628
+ readonly properties: {
629
+ readonly key: {
630
+ readonly name: "key";
631
+ };
632
+ readonly value: {
633
+ readonly name: "value";
634
+ };
635
+ };
636
+ readonly superTypes: [];
637
+ };
638
+ readonly ItemDeclaration: {
639
+ readonly name: "ItemDeclaration";
640
+ readonly properties: {
641
+ readonly description: {
642
+ readonly name: "description";
643
+ };
644
+ readonly name: {
645
+ readonly name: "name";
646
+ };
647
+ readonly properties: {
648
+ readonly name: "properties";
649
+ readonly defaultValue: [];
650
+ };
651
+ readonly title: {
652
+ readonly name: "title";
653
+ };
654
+ };
655
+ readonly superTypes: ["GroupContent", "ParallelContent", "SwimlaneContent"];
656
+ };
657
+ readonly LabelDeclaration: {
658
+ readonly name: "LabelDeclaration";
659
+ readonly properties: {
660
+ readonly description: {
661
+ readonly name: "description";
662
+ };
663
+ readonly name: {
664
+ readonly name: "name";
665
+ };
666
+ readonly properties: {
667
+ readonly name: "properties";
668
+ readonly defaultValue: [];
669
+ };
670
+ readonly title: {
671
+ readonly name: "title";
672
+ };
673
+ };
674
+ readonly superTypes: ["RoadmapEntry"];
675
+ };
676
+ readonly MilestoneDeclaration: {
677
+ readonly name: "MilestoneDeclaration";
678
+ readonly properties: {
679
+ readonly description: {
680
+ readonly name: "description";
681
+ };
682
+ readonly name: {
683
+ readonly name: "name";
684
+ };
685
+ readonly properties: {
686
+ readonly name: "properties";
687
+ readonly defaultValue: [];
688
+ };
689
+ readonly title: {
690
+ readonly name: "title";
691
+ };
692
+ };
693
+ readonly superTypes: ["RoadmapEntry"];
694
+ };
695
+ readonly NowlineDirective: {
696
+ readonly name: "NowlineDirective";
697
+ readonly properties: {
698
+ readonly properties: {
699
+ readonly name: "properties";
700
+ readonly defaultValue: [];
701
+ };
702
+ readonly version: {
703
+ readonly name: "version";
704
+ };
705
+ };
706
+ readonly superTypes: [];
707
+ };
708
+ readonly NowlineFile: {
709
+ readonly name: "NowlineFile";
710
+ readonly properties: {
711
+ readonly configEntries: {
712
+ readonly name: "configEntries";
713
+ readonly defaultValue: [];
714
+ };
715
+ readonly directive: {
716
+ readonly name: "directive";
717
+ };
718
+ readonly hasConfig: {
719
+ readonly name: "hasConfig";
720
+ readonly defaultValue: false;
721
+ };
722
+ readonly includes: {
723
+ readonly name: "includes";
724
+ readonly defaultValue: [];
725
+ };
726
+ readonly roadmapDecl: {
727
+ readonly name: "roadmapDecl";
728
+ };
729
+ readonly roadmapEntries: {
730
+ readonly name: "roadmapEntries";
731
+ readonly defaultValue: [];
732
+ };
733
+ };
734
+ readonly superTypes: [];
735
+ };
736
+ readonly ParallelBlock: {
737
+ readonly name: "ParallelBlock";
738
+ readonly properties: {
739
+ readonly content: {
740
+ readonly name: "content";
741
+ readonly defaultValue: [];
742
+ };
743
+ readonly name: {
744
+ readonly name: "name";
745
+ };
746
+ readonly properties: {
747
+ readonly name: "properties";
748
+ readonly defaultValue: [];
749
+ };
750
+ readonly title: {
751
+ readonly name: "title";
752
+ };
753
+ };
754
+ readonly superTypes: ["GroupContent", "SwimlaneContent"];
755
+ };
756
+ readonly ParallelContent: {
757
+ readonly name: "ParallelContent";
758
+ readonly properties: {};
759
+ readonly superTypes: [];
760
+ };
761
+ readonly PersonDeclaration: {
762
+ readonly name: "PersonDeclaration";
763
+ readonly properties: {
764
+ readonly description: {
765
+ readonly name: "description";
766
+ };
767
+ readonly name: {
768
+ readonly name: "name";
769
+ };
770
+ readonly properties: {
771
+ readonly name: "properties";
772
+ readonly defaultValue: [];
773
+ };
774
+ readonly title: {
775
+ readonly name: "title";
776
+ };
777
+ };
778
+ readonly superTypes: ["RoadmapEntry"];
779
+ };
780
+ readonly PersonMemberRef: {
781
+ readonly name: "PersonMemberRef";
782
+ readonly properties: {
783
+ readonly ref: {
784
+ readonly name: "ref";
785
+ };
786
+ };
787
+ readonly superTypes: ["TeamContent"];
788
+ };
789
+ readonly RoadmapDeclaration: {
790
+ readonly name: "RoadmapDeclaration";
791
+ readonly properties: {
792
+ readonly name: {
793
+ readonly name: "name";
794
+ };
795
+ readonly properties: {
796
+ readonly name: "properties";
797
+ readonly defaultValue: [];
798
+ };
799
+ readonly title: {
800
+ readonly name: "title";
801
+ };
802
+ };
803
+ readonly superTypes: [];
804
+ };
805
+ readonly RoadmapEntry: {
806
+ readonly name: "RoadmapEntry";
807
+ readonly properties: {};
808
+ readonly superTypes: [];
809
+ };
810
+ readonly ScaleBlock: {
811
+ readonly name: "ScaleBlock";
812
+ readonly properties: {
813
+ readonly properties: {
814
+ readonly name: "properties";
815
+ readonly defaultValue: [];
816
+ };
817
+ };
818
+ readonly superTypes: ["ConfigEntry"];
819
+ };
820
+ readonly SizeDeclaration: {
821
+ readonly name: "SizeDeclaration";
822
+ readonly properties: {
823
+ readonly description: {
824
+ readonly name: "description";
825
+ };
826
+ readonly name: {
827
+ readonly name: "name";
828
+ };
829
+ readonly properties: {
830
+ readonly name: "properties";
831
+ readonly defaultValue: [];
832
+ };
833
+ readonly title: {
834
+ readonly name: "title";
835
+ };
836
+ };
837
+ readonly superTypes: ["RoadmapEntry"];
838
+ };
839
+ readonly StatusDeclaration: {
840
+ readonly name: "StatusDeclaration";
841
+ readonly properties: {
842
+ readonly description: {
843
+ readonly name: "description";
844
+ };
845
+ readonly name: {
846
+ readonly name: "name";
847
+ };
848
+ readonly properties: {
849
+ readonly name: "properties";
850
+ readonly defaultValue: [];
851
+ };
852
+ readonly title: {
853
+ readonly name: "title";
854
+ };
855
+ };
856
+ readonly superTypes: ["RoadmapEntry"];
857
+ };
858
+ readonly StyleDeclaration: {
859
+ readonly name: "StyleDeclaration";
860
+ readonly properties: {
861
+ readonly name: {
862
+ readonly name: "name";
863
+ };
864
+ readonly properties: {
865
+ readonly name: "properties";
866
+ readonly defaultValue: [];
867
+ };
868
+ readonly title: {
869
+ readonly name: "title";
870
+ };
871
+ };
872
+ readonly superTypes: ["ConfigEntry"];
873
+ };
874
+ readonly StyleProperty: {
875
+ readonly name: "StyleProperty";
876
+ readonly properties: {
877
+ readonly key: {
878
+ readonly name: "key";
879
+ };
880
+ readonly value: {
881
+ readonly name: "value";
882
+ };
883
+ };
884
+ readonly superTypes: [];
885
+ };
886
+ readonly SwimlaneContent: {
887
+ readonly name: "SwimlaneContent";
888
+ readonly properties: {};
889
+ readonly superTypes: [];
890
+ };
891
+ readonly SwimlaneDeclaration: {
892
+ readonly name: "SwimlaneDeclaration";
893
+ readonly properties: {
894
+ readonly content: {
895
+ readonly name: "content";
896
+ readonly defaultValue: [];
897
+ };
898
+ readonly name: {
899
+ readonly name: "name";
900
+ };
901
+ readonly properties: {
902
+ readonly name: "properties";
903
+ readonly defaultValue: [];
904
+ };
905
+ readonly title: {
906
+ readonly name: "title";
907
+ };
908
+ };
909
+ readonly superTypes: ["RoadmapEntry"];
910
+ };
911
+ readonly SymbolDeclaration: {
912
+ readonly name: "SymbolDeclaration";
913
+ readonly properties: {
914
+ readonly description: {
915
+ readonly name: "description";
916
+ };
917
+ readonly name: {
918
+ readonly name: "name";
919
+ };
920
+ readonly properties: {
921
+ readonly name: "properties";
922
+ readonly defaultValue: [];
923
+ };
924
+ readonly title: {
925
+ readonly name: "title";
926
+ };
927
+ };
928
+ readonly superTypes: ["ConfigEntry"];
929
+ };
930
+ readonly TeamContent: {
931
+ readonly name: "TeamContent";
932
+ readonly properties: {};
933
+ readonly superTypes: [];
934
+ };
935
+ readonly TeamDeclaration: {
936
+ readonly name: "TeamDeclaration";
937
+ readonly properties: {
938
+ readonly content: {
939
+ readonly name: "content";
940
+ readonly defaultValue: [];
941
+ };
942
+ readonly name: {
943
+ readonly name: "name";
944
+ };
945
+ readonly properties: {
946
+ readonly name: "properties";
947
+ readonly defaultValue: [];
948
+ };
949
+ readonly title: {
950
+ readonly name: "title";
951
+ };
952
+ };
953
+ readonly superTypes: ["RoadmapEntry", "TeamContent"];
954
+ };
955
+ };
956
+ }
957
+ export declare const reflection: NowlineAstReflection;
958
+ //# sourceMappingURL=ast.d.ts.map