Spaces:
Running
on
A100
Running
on
A100
File size: 303 Bytes
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: any): any;
export function insert(exifBytes: any, dataURL: string): string;
}
|