aboutsummaryrefslogtreecommitdiff
blob: f40d4921fbaf6dadc96ad0ce925e7506503b0c4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
export default interface Photo {
  /**
   * Name of the photo or the file.
   */
  name: string;

  /**
   * Path to the photo.
   */
  src: string;

  /**
   * Latitude where the photo was taken.
   */
  latitude: number;

  /**
   * Logitude where the photo was taken.
   */
  longitude: number;

  /**
   * Date and time when the photo was taken.
   */
  time: string;

  /**
   * Photo thumnnail.
   */
  thumbnail: string;
}