chore: Esporta il tipo `IndexedModel`

This commit is contained in:
Maicol Battistini 2022-01-07 13:49:37 +01:00
parent 91fb29bd22
commit 0b4805fd4c
No known key found for this signature in database
GPG Key ID: 4FDB0F87CDB1D34A
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ export type ColumnsT = Record<string, string | ColumnT>;
export type RowsT = Collection<Model>;
export type SectionsT = Record<string, SectionT> | SectionT[];
type IndexedModel = Model & {[prop: string]: any};
export type IndexedModel = Model & {[prop: string]: any};
/**
* @abstract