UNPKG

skailan-conversations

Version:

Servicio de conversaciones y mensajería para Skailan

13 lines 472 B
import { Channel } from '../../domain/entities/Channel'; import { IChannelRepository } from '../../domain/repositories/IChannelRepository'; interface GetChannelByIdRequest { id: string; organizationId: string; } export declare class GetChannelById { private channelRepository; constructor(channelRepository: IChannelRepository); execute(request: GetChannelByIdRequest): Promise<Channel | null>; } export {}; //# sourceMappingURL=GetChannelById.d.ts.map