sigit.io/src/types/mark.ts

31 lines
481 B
TypeScript
Raw Normal View History

2024-08-20 14:27:35 +03:00
import { MarkType } from './drawing'
export interface CurrentUserMark {
id: number
mark: Mark
isLast: boolean
isCompleted: boolean
currentValue?: string
}
export interface Mark {
id: number
npub: string
pdfFileHash: string
type: MarkType
location: MarkLocation
2024-08-14 12:24:15 +03:00
fileName: string
value?: string
}
export interface MarkLocation extends MarkRect {
page: number
}
export interface MarkRect {
left: number
top: number
width: number
height: number
}