togezr
Version:
Better together_
8 lines • 315 B
TypeScript
import { IChannel } from './IChannel';
import { ISlackUserWithIM } from './ISlackUserWithIM';
import { TSlackUserChannelType } from './TSlackChannel';
export interface ISlackUserChannel extends IChannel {
type: TSlackUserChannelType;
user: ISlackUserWithIM;
}
//# sourceMappingURL=ISlackUserChannel.d.ts.map