ixfx
    Preparing search index...

    Type Alias LabelledSingleValue<TValue>

    A value that is labelled

    type LabelledSingleValue<TValue> = {
        label: string;
        value: TValue | undefined;
    }

    Type Parameters

    • TValue
    Index

    Properties

    Properties

    label: string
    value: TValue | undefined