mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-05-27 16:16:56 +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;
|
|
};
|
|
}
|