Interface TypeMetaData

Represents runtime meta data about a meta model type.

interface TypeMetaData {
    name: string;
    properties: TypeProperty[];
}

Properties

Properties

name: string

The name of this meta model type. Corresponds to the AstNode.$type value.

properties: TypeProperty[]

A list of properties. They can contain default values for their respective property in the AST.