Add rowHeight property to table types

This commit is contained in:
Andrew Kingston 2023-04-18 10:38:29 +01:00
parent 8aff208acd
commit 7ae3341e22
1 changed files with 1 additions and 0 deletions

View File

@ -79,6 +79,7 @@ export interface Table extends Document {
indexes?: { [key: string]: any }
rows?: { [key: string]: any }
created?: boolean
rowHeight?: number
}
export interface TableRequest extends Table {