UNPKG

@alisdigital/types-library

Version:

TypeScript type definitions for Papilet ecosystem with session soft delete and event management features

9 lines (8 loc) 226 B
import { StorageEnum } from "../enum/image.enum"; export type StorageType = (typeof StorageEnum)[number]; export interface IImageModelAttributes { _id?: string; id: string; url: string; storage: StorageType; }