mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-05-28 16:46:57 +00:00
7 lines
126 B
TypeScript
7 lines
126 B
TypeScript
namespace Entity {
|
|
export type Application = {
|
|
name: string;
|
|
website?: string | null;
|
|
vapid_key?: string | null;
|
|
};
|
|
}
|