File size: 329 Bytes
246efdb
bea2d0b
 
 
 
 
 
 
 
246efdb
 
bea2d0b
1
2
3
4
5
6
7
8
9
10
11
12
13
declare module "piexifjs" {
  export const ImageIFD: {
    Make: number;
    ImageDescription: number;
    Software: number;
  };
  export const ExifIFD: {
    DateTimeOriginal: number;
  };
  export function dump(exifObj: Record<string, unknown>): string;
  export function insert(exifBytes: string, dataURL: string): string;
}