Fix: handle document notes user format api change (#5751)

This commit is contained in:
shamoon
2024-02-13 09:25:35 -08:00
committed by GitHub
parent 907b6d1294
commit d83bbdc50b
4 changed files with 41 additions and 14 deletions

View File

@@ -1,7 +1,8 @@
import { ObjectWithId } from './object-with-id'
import { User } from './user'
export interface DocumentNote extends ObjectWithId {
created?: Date
note?: string
user?: number // User
user?: User
}