mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
29 lines
460 B
TypeScript
29 lines
460 B
TypeScript
declare module "node-iptc" {
|
|
|
|
function e(data): any;
|
|
|
|
module e {
|
|
}
|
|
|
|
export = e;
|
|
}
|
|
|
|
|
|
declare module "exif-parser" {
|
|
export interface ExifData {
|
|
tags: any;
|
|
imageSize: any;
|
|
}
|
|
export interface ExifObject {
|
|
parse(): ExifData;
|
|
}
|
|
export function create(data: any): ExifObject;
|
|
|
|
export function enableTagNames(value: boolean);
|
|
|
|
export function enableImageSize(value: boolean);
|
|
|
|
export function enableReturnTags(value: boolean);
|
|
}
|
|
|