channelape-sdk
Version:
A client for interacting with ChannelApe's API
11 lines (10 loc) • 377 B
TypeScript
/// <reference types="q" />
import Channel from '../model/Channel';
import RequestClientWrapper from '../../RequestClientWrapper';
import * as Q from 'q';
export default class ChannelsService {
private readonly client;
constructor(client: RequestClientWrapper);
get(channelId: string): Q.Promise<Channel>;
private mapPromise(deferred, error, response, body);
}