api/client/types/application.ts
2024-06-06 15:51:33 -10:00

15 lines
289 B
TypeScript

export type Application = {
name: string;
website?: string | null;
vapid_key?: string | null;
};
export type ApplicationData = {
id: string;
name: string;
website?: string | null;
client_id: string;
client_secret: string;
vapid_key?: string | null;
};