server/types/entities/application.ts
Jesse Wierzbinski 436a79d99f
Initial commit
2023-09-10 17:31:08 -10:00

6 lines
100 B
TypeScript

export type Application = {
name: string;
website?: string | null;
vapid_key?: string | null;
};