iceshrimp/packages/megalodon/src/entities/application.ts
2023-07-06 02:16:51 +00:00

7 lines
130 B
TypeScript

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