Cozy-Nest/cozy-nest-client/cozy-types.d.ts

14 lines
219 B
TypeScript

// type for image
export type Image = {
path: string,
hash: string,
metadata: {
date: number
exif: {
parameters: string,
'cozy-nest-tags'?: string
'cozy-nest-hidden'?: string
}
}
}