Interface UnionTypeJson

Basic types in ArkTS are represented by a name.

interface UnionTypeJson {
    _identifier: string;
    name: string;
    types: AstJson[];
}

Hierarchy (View Summary)

Properties

_identifier: string

This is used to as a unique type identifier to deserialize the AST node.

name: string
types: AstJson[]