server/types/entities/application.ts
2023-09-12 10:48:10 -10:00

6 lines
105 B
TypeScript

export interface APIApplication {
name: string;
website?: string | null;
vapid_key?: string | null;
}