server/types/entities/application.ts
2024-04-06 19:30:49 -10:00

6 lines
114 B
TypeScript

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