UNPKG

noticebord-client

Version:

The official Typescript client library for the Noticebord API.

10 lines (9 loc) 198 B
import { NestedTopic, User } from "."; export interface ListNotice { id: number; title: string; createdAt: string; updatedAt: string; author?: User; topics: NestedTopic[]; }