mirror of
https://github.com/versia-pub/api.git
synced 2025-12-06 08:28:19 +01:00
15 lines
289 B
TypeScript
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;
|
||
|
|
};
|