server/types/mastodon/application.ts

6 lines
109 B
TypeScript
Raw Normal View History

2024-04-14 12:53:21 +02:00
export type Application = {
2024-04-07 07:30:49 +02:00
name: string;
website?: string | null;
vapid_key?: string | null;
2024-04-14 12:53:21 +02:00
};