export interface Notice { timestamp: number; title: string; message: string; link?: string; } export interface Meta { version: string; notices: Notice[]; } export interface TermsAcceptanceStatus { termsVersion: string; content: string; accepted: boolean; acceptedAt?: number; } //# sourceMappingURL=meta.d.ts.map