A unit is a container of elements, it can not contain other units.

interface Document {
    $CreationOptions?: unknown;
    $ID: string;
    $Type: string;
    documentation: string;
    excluded: boolean;
    exportLevel: ExportLevel;
    name: string;
}

Hierarchy (view full)

Properties

$CreationOptions?: unknown

Options to pass during the element creation

$ID: string

The unique id of the element.

$Type: string

The type of the element.

documentation: string
excluded: boolean
exportLevel: ExportLevel
name: string