UNPKG

dop-sdk

Version:

Mini App SDK for JavaScript by VTB

12 lines (11 loc) 281 B
/** * Represents a file in the gallery. */ export interface GalleryFileInfo { /** The MIME type of the file (optional). */ mimeType?: string; /** The name of the file (optional). */ filename?: string; /** The binary data of the file. */ data: number[]; }