The serverless API for our final software engineering project.

12345678910
  1. export type DatabaseType = "laws" | "advice";
  2. export interface Topic {
  3. blockId: string;
  4. name: string;
  5. }
  6. export interface Error {
  7. status: string;
  8. }