Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 338 Bytes

File metadata and controls

19 lines (15 loc) · 338 Bytes

react-native-app-helpers/TableRow

A row of data within a table.

Usage

import type { TableRow } from "react-native-app-helpers";

const example: TableRow<
  `exampleKeyA` | `exampleKeyB`,
  `exampleKeyC` | `exampleKeyD`
> = {
  exampleKeyA: 123,
  exampleKeyB: `Example`,
  exampleKeyC: false,
  exampleKeyD: true,
};