UNPKG

@guestbell/react-page-plugins

Version:

Plugins we use in GuestBell for working with amazing react-page package

14 lines (13 loc) 315 B
import { Moment } from 'moment/moment'; import { Tag } from '../tag/Tag'; import { ImageInstance } from './ImageInstance'; export interface Image { id: number; title: string; description: string; src: string; srcSet: string; createdOn: Moment; sizes: ImageInstance[]; tags: Tag[]; }