schema-components - v3.7.0
    Preparing search index...

    Interface DiscriminatedActive

    Resolution of a discriminated union against a concrete value. The renderer uses optionLabels to title each tab, activeIndex to select the open tab, and activeOption as the field to render below.

    interface DiscriminatedActive {
        optionLabels: readonly string[];
        activeIndex: number;
        activeOption: WalkedField | undefined;
    }
    Index

    Properties

    optionLabels: readonly string[]
    activeIndex: number
    activeOption: WalkedField | undefined