1
0
Fork 0
mirror of synced 2024-10-03 19:43:32 +13:00

Added missing types

This commit is contained in:
Dean 2023-07-24 09:15:13 +01:00
parent 3b36970c58
commit 5691be3c4a

View file

@ -32,3 +32,13 @@ export interface Row extends Document {
tableId?: string tableId?: string
[key: string]: any [key: string]: any
} }
export interface DeleteRows {
rows: (Row | string)[]
}
export interface DeleteRow {
_id: string
}
export type DeleteRowRequest = DeleteRows | DeleteRow