slack-web-api-client
Version:
Streamlined Slack Web API client for TypeScript
20 lines • 517 B
TypeScript
import type { SlackAPIResponse } from "../response";
export type UsersSetPhotoResponse = SlackAPIResponse & {
error?: string;
needed?: string;
ok: boolean;
profile?: Profile;
provided?: string;
};
export interface Profile {
avatar_hash?: string;
image_1024?: string;
image_192?: string;
image_24?: string;
image_32?: string;
image_48?: string;
image_512?: string;
image_72?: string;
image_original?: string;
}
//# sourceMappingURL=UsersSetPhotoResponse.d.ts.map