mistykey/packages/megalodon/src/pleroma/entities/application.ts
2023-09-24 01:44:53 +02:00

7 lines
137 B
TypeScript

namespace PleromaEntity {
export type Application = {
name: string
website?: string | null
vapid_key?: string | null
}
}