Bring in latest changes

This commit is contained in:
Christopher Schleiden
2023-01-09 14:06:35 -08:00
parent 7ba0613401
commit 23be948895
3 changed files with 13 additions and 12 deletions
@@ -22,7 +22,7 @@ export abstract class Definition {
// A key to uniquely identify a definition
public readonly key: string
public description: string | undefined
public readonly description: string | undefined
public constructor(key: string, definition?: MappingToken) {
this.key = key
@@ -10,7 +10,7 @@ import { TokenType } from "../tokens/types"
export class PropertyDefinition {
public readonly type: string = ""
public readonly required: boolean = false
public description: string | undefined
public readonly description: string | undefined
public constructor(token: TemplateToken) {
if (token.templateTokenType === TokenType.String) {