import { NestedTopic, User } from "."; export interface ListNotice { id: number; title: string; createdAt: string; updatedAt: string; author?: User; topics: NestedTopic[]; }