UNPKG

517 BTypeScriptView Raw
1import { WebAPICallResult } from '../../WebClient';
2export type UsersSetPhotoResponse = WebAPICallResult & {
3 error?: string;
4 needed?: string;
5 ok?: boolean;
6 profile?: Profile;
7 provided?: string;
8};
9export interface Profile {
10 avatar_hash?: string;
11 image_1024?: string;
12 image_192?: string;
13 image_24?: string;
14 image_32?: string;
15 image_48?: string;
16 image_512?: string;
17 image_72?: string;
18 image_original?: string;
19}
20//# sourceMappingURL=UsersSetPhotoResponse.d.ts.map
\No newline at end of file