UNPKG

@self.id/image-utils

Version:

Image utilities for Self.ID profiles

16 lines (15 loc) 409 B
export type { ImageMetadata, ImageSources } from '@datamodels/identity-profile-basic'; export declare type Dimensions = { height: number; width: number; }; export declare type SizedImage = Dimensions & { blob: Blob; }; /** * Image size modes: * * - "contain" = the image fits in the container * - "cover" = the image fills the container */ export declare type SizeMode = 'contain' | 'cover';