1
0
Fork 0
mirror of synced 2024-06-22 04:10:54 +12:00
budibase/packages/types/src/documents/document.ts

11 lines
184 B
TypeScript
Raw Normal View History

export interface Document {
2022-05-20 23:29:31 +12:00
_id?: string
_rev?: string
2022-05-26 08:32:08 +12:00
createdAt?: string | number
2022-05-20 23:29:31 +12:00
updatedAt?: string
}
export interface AnyDocument extends Document {
[key: string]: any
}