UNPKG

noticebord-client

Version:

The official Typescript client library for the Noticebord API.

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