10 lines
179 B
TypeScript
10 lines
179 B
TypeScript
import Delta from 'quill-delta'
|
|
|
|
export type DocumentDelta = Delta & {
|
|
pageIndex: number
|
|
documentId: string
|
|
senderId?: string
|
|
requestSync?: boolean
|
|
totalPage?: number
|
|
}
|