Minor fixes
parent
efdb4c726f
commit
33797c5898
|
@ -116,7 +116,7 @@ export default defineComponent({
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
photos: {
|
photos: {
|
||||||
type: Array,
|
type: Array<IPhoto>,
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -31,7 +31,7 @@ export default defineComponent({
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
photos: {
|
photos: {
|
||||||
type: Array,
|
type: Array<IPhoto>,
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -77,6 +77,7 @@ export type IPhoto = {
|
||||||
w: number;
|
w: number;
|
||||||
datetaken: number;
|
datetaken: number;
|
||||||
address?: string;
|
address?: string;
|
||||||
|
tags: { [id: string]: string };
|
||||||
exif?: {
|
exif?: {
|
||||||
Rotation?: number;
|
Rotation?: number;
|
||||||
Orientation?: number;
|
Orientation?: number;
|
||||||
|
|
Loading…
Reference in New Issue