server/types/entities/application.ts
Jesse Wierzbinski 636f2ffff8
Fix ESLint
2023-09-10 17:46:20 -10:00

6 lines
102 B
TypeScript

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