mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-10-14 05:14:51 +00:00
7 lines
130 B
TypeScript
7 lines
130 B
TypeScript
namespace Entity {
|
|
export type Application = {
|
|
name: string
|
|
website?: string | null
|
|
vapid_key?: string | null
|
|
}
|
|
}
|