idea-toolbox
    Preparing search index...

    Interface PickOptionLike<T>

    The plain shape of a PickOption: what you can write inline, without building the class. Only the value is required, since the name falls back to it.

    interface PickOptionLike<T = any> {
        description?: string;
        group?: string;
        item?: T;
        name?: string;
        value: string | number;
    }

    Type Parameters

    • T = any
    Index

    Properties

    description?: string
    group?: string
    item?: T
    name?: string
    value: string | number