@slack/web-api
Version:
Official library for using the Slack Platform's Web API
17 lines • 469 B
TypeScript
import { WebAPICallResult } from '../WebClient';
export type AdminConversationsGetConversationPrefsResponse = WebAPICallResult & {
error?: string;
needed?: string;
ok?: boolean;
prefs?: Prefs;
provided?: string;
};
export interface Prefs {
can_thread?: CanThread;
who_can_post?: CanThread;
}
export interface CanThread {
type?: string[];
user?: string[];
}
//# sourceMappingURL=AdminConversationsGetConversationPrefsResponse.d.ts.map