@timlassiter11/yatl
    Preparing search index...

    Interface NumberEditorOptions<T>

    interface NumberEditorOptions<T extends object = UnspecifiedRecord> {
        canEdit?: (field: NestedKeyOf<T>, row: T) => boolean;
        max?: number;
        min?: number;
        step?: number;
    }

    Type Parameters

    Hierarchy

    • BaseEditorOptions<T>
      • NumberEditorOptions
    Index

    Properties

    Properties

    canEdit?: (field: NestedKeyOf<T>, row: T) => boolean
    max?: number
    min?: number
    step?: number