import { SeoType } from '../baseTypes'; export namespace ILegal { export interface Legal { id: string; title: string; slug: string; content: string; seo: SeoType; date_created: string; date_updated: string; } }