import { ContentLink } from "./content-link"; export interface ContentParams { type: string; date?: string; creator?: string; links?: ContentLink[]; myTags?: string[]; price?: number; title?: string; text?: string; file?: string; thumb?: string; }