Skip to content

Instantly share code, notes, and snippets.

@mr-pascal
Last active May 2, 2021 07:33
Show Gist options
  • Select an option

  • Save mr-pascal/41362f349f8ca17f6f502813278de2fb to your computer and use it in GitHub Desktop.

Select an option

Save mr-pascal/41362f349f8ca17f6f502813278de2fb to your computer and use it in GitHub Desktop.
interface Cell {
value: string | boolean | number
timestamp: number
}
interface Table {
[rowKey: string]: {
[columnFamily: string]: {
[columnQualifier: string]: Array<Cell>
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment