import { Content } from '.'; import { DatabaseModel } from '..'; export interface ContentResponse extends DatabaseModel { /** ID is equal to name */ name: string; /** The content response. */ content?: (T | Content)[] | (T | Content); /** Key-value metadata about the content. */ metadata: any; }