this repo has no description
at main 265 B view raw
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} 10 11export interface CDNUploadResponse { 12 files: Array<{ 13 deployedUrl: string; 14 originalUrl: string; 15 }>; 16}