sigit.io/src/types/file.ts

9 lines
150 B
TypeScript
Raw Normal View History

import { SigitFile } from '../utils/file'
export interface CurrentUserFile {
id: number
file: SigitFile
hash?: string
isHashValid: boolean
}