@guestbell/react-page-plugins
Version:
Plugins we use in GuestBell for working with amazing react-page package
13 lines (12 loc) • 326 B
TypeScript
import { ContentInstance } from './ContentInstance';
import { ContentType } from './enum/ContentType';
import { Moment } from 'moment';
import { Tag } from '../tag/Tag';
export interface Content {
id: number;
createdOn: Moment;
title: string;
type: ContentType;
data: ContentInstance[];
tags: Tag[];
}