UNPKG

@brizy/media-gallery

Version:
13 lines (12 loc) 298 B
export interface Item { id: number; uid: string; fileName: string; extension: string; name: string; url: string; altTitle: string | undefined; isStockPhoto: boolean; } export type OnInsertFiles = (els: Item[]) => void; export type OnInsertFile = (el: Item) => void;