UNPKG

@brizy/media-gallery

Version:
21 lines (20 loc) 435 B
import { ItemId } from "~/types/ItemId"; interface FileSource { author: string; authorUrl: string; provider: string; termsUrl: string; } export interface Item { name: string; fileName: string; extension: string; altTitle: string | undefined; dimensions: string | undefined; url: string; thumbnailUrl: string; id: ItemId; isSelected: boolean; fileSource: FileSource; } export {};