sigit.io/src/types/file.ts

10 lines
174 B
TypeScript
Raw Normal View History

import { PdfFile } from './drawing.ts'
export interface CurrentUserFile {
id: number
pdfFile: PdfFile | File
filename: string
hash?: string
isHashValid: boolean
}