xref: /expo/docs/ui/components/Table/types.ts (revision 3f609562)
1export enum TableLayout {
2  Auto = 'auto',
3  Fixed = 'fixed',
4}
5
6export type TextAlign = 'left' | 'right' | 'center' | 'justify';
7