From 566eb2c9cce799ed8a3becc6d81560f1540eaacf Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Mon, 15 Dec 2025 16:30:22 +0100 Subject: Initial Release --- dist/image_type.d.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 dist/image_type.d.ts (limited to 'dist/image_type.d.ts') diff --git a/dist/image_type.d.ts b/dist/image_type.d.ts new file mode 100644 index 0000000..93aa767 --- /dev/null +++ b/dist/image_type.d.ts @@ -0,0 +1,9 @@ +/** + * ImageType + */ +export type ImageType = string; +export namespace ImageType { + let PNG: string; + let JPEG: string; + let PDF: string; +} -- cgit