Interface Dataset

interface Dataset {
    cellset: Cellset;
    columns: PivotColumn[];
    data: Record<string, unknown>[];
    rows: Property[];
}

Properties

cellset: Cellset
columns: PivotColumn[]
data: Record<string, unknown>[]
rows: Property[]

Generated using TypeDoc