summaryrefslogtreecommitdiff
path: root/packages/megalodon/src/entities/application.ts
blob: 3af64fcf96a07ab2ba7241bd0c768bd7b10ad684 (plain)
1
2
3
4
5
6
7
namespace Entity {
  export type Application = {
    name: string
    website?: string | null
    vapid_key?: string | null
  }
}