All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ducks.columns.Columns.d.ts Maven / Gradle / Ivy

The newest version!
import { type Condition } from '../../sagas/conditions'

interface Conditions {
    visible?: Condition[]
}

export interface Column {
    isInit: boolean
    visible: boolean
    visibleState: boolean
    disabled: boolean
    frozen: boolean
    key: string
    columnId: string
    label?: string
    conditions?: Conditions
}

export type Columns = Record
export type State = Record




© 2015 - 2024 Weber Informatics LLC | Privacy Policy