5 lines
155 B
TypeScript
Raw Normal View History

export const VIEW_STYLE_TABLE = 'table';
export const VIEW_STYLE_GRID = 'grid';
2022-10-20 11:57:30 -04:00
export type ViewStyle = typeof VIEW_STYLE_TABLE | typeof VIEW_STYLE_GRID;