8 lines
134 B
TypeScript
8 lines
134 B
TypeScript
import Delta from 'quill-delta'
|
|
|
|
export type DocumentDelta = Delta & {
|
|
pageIndex: number
|
|
documentId: string
|
|
senderId?: string
|
|
}
|