sharkey/packages/megalodon/src/entities/application.ts
2023-09-25 01:20:03 +02:00

8 lines
126 B
TypeScript

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