1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-23 14:57:46 +01:00

refactor: Esporta il tipo ColumnT

This commit is contained in:
Maicol Battistini 2021-09-13 20:29:44 +02:00
parent daa16ffed9
commit 19f96d5c95
No known key found for this signature in database
GPG Key ID: 4FDB0F87CDB1D34A
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ import TableRow from '../DataTable/TableRow';
import Mdi from '../Mdi';
import Page from '../Page';
type ColumnT = {
export type ColumnT = {
id?: string,
title: string,
type: 'checkbox' | 'numeric' | null

View File

@ -1 +1 @@
export {default as RecordsPage} from './RecordsPage';
export {ColumnT, default as RecordsPage} from './RecordsPage';