Interface JTableData

interface JTableData {
    columns: string[];
    links: {
        href: string;
        rel: string;
        title: string;
        type: string;
    }[];
    numberReturned: number;
    rows: [];
}

Properties

columns: string[]
links: {
    href: string;
    rel: string;
    title: string;
    type: string;
}[]

Type declaration

  • href: string
  • rel: string
  • title: string
  • type: string
numberReturned: number
rows: []