Interface DsCore<T>

Core data structure for Ds.

interface DsCore<T extends object> {
    mode?: string;
    rowsSel: Loc[];
    state?: DsState;
    tables: T[][];
    tablesSel: number[];
}

Type Parameters

  • T extends object

    Object type representing table structure.

Properties

mode?: string

Current mode.

rowsSel: Loc[]

Selected row locations.

state?: DsState

Current state.

tables: T[][]

2D array representing tables.

tablesSel: number[]

Selected table IDs.

MMNEPVFCICPMFPCPTTAAATR