server/types/entities/application.ts

6 lines
102 B
TypeScript
Raw Normal View History

2023-09-11 05:46:20 +02:00
export interface Application {
2023-09-11 05:31:08 +02:00
name: string;
website?: string | null;
vapid_key?: string | null;
2023-09-11 05:46:20 +02:00
}