Interface ResultSet<TExactFields, TProperty>

interface ResultSet<TExactFields, TProperty> {
    colHeaders?: Header[];
    dataCells?: Cell<TExactFields, TProperty>[][];
    grandTotal?: Cell<TExactFields, TProperty>[];
    rowHeaders?: Header[];
    totalCol?: Cell<TExactFields, TProperty>[][];
    totalRow?: Cell<TExactFields, TProperty>[];
}

Type Parameters

  • TExactFields extends AllJiraFields = AllJiraFields
  • TProperty extends Property = Record<string, unknown>

Properties

colHeaders?: Header[]
dataCells?: Cell<TExactFields, TProperty>[][]
grandTotal?: Cell<TExactFields, TProperty>[]
rowHeaders?: Header[]
totalCol?: Cell<TExactFields, TProperty>[][]
totalRow?: Cell<TExactFields, TProperty>[]