firefish/packages/megalodon/src/entities/identity_proof.ts
ThatOneCalculator 2e4c30e572
chore: 🎨 format
2023-07-13 18:32:23 -07:00

10 lines
171 B
TypeScript

namespace Entity {
export type IdentityProof = {
provider: string;
provider_username: string;
updated_at: string;
proof_url: string;
profile_url: string;
};
}