this repo has no description
1export interface CachetUser { 2 type: "user"; 3 id: string; 4 userId: string; 5 displayName: string; 6 pronouns: string; 7 imageUrl: string; 8 expiration: string; 9}