Hyperlinkv0.8.0-beta.28

SchemaAST

export class PropertySignature {
  readonly name: PropertyKey
  readonly type: AST

  constructor(
    name: PropertyKey,
    type: AST
  ) {
    this.name = name
    this.type = type
  }
}
Referenced by 1 symbols