type Format = 'jpg' | 'png'; type Type = 'questrooms' | 'certificates' | 'avatars' | 'logos' | 'locations'; type Image = { img: string | ArrayBuffer | null; type: Type; format: Format; }; export { Image };