rudeshark.net/packages/megalodon/src/entities/application.ts

8 lines
126 B
TypeScript

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