togezr
Version:
Better together_
32 lines • 721 B
TypeScript
interface ISlackChannelTopic {
value: string;
creator: string;
last_set: number;
}
interface ISlackChannelPurpose {
value: string;
creator: string;
last_set: number;
}
export interface ISlackChannel {
id: string;
name: string;
name_normalized: string;
topic: ISlackChannelTopic;
purpose: ISlackChannelPurpose;
num_members: number;
created: number;
creator: string;
is_member: boolean;
is_archived: boolean;
is_channel: boolean;
is_general: boolean;
is_mpim: boolean;
is_org_shared: boolean;
is_private: boolean;
is_shared: boolean;
members: string[];
unlinked: number;
}
export {};
//# sourceMappingURL=ISlackChannel.d.ts.map