better-trakt
Version:
A Trakt.tv client with native Typescript support and quality of life features
16 lines • 450 B
TypeScript
import { ApiConfig, ApiNamespace } from '../client';
import { Network } from '../trakt';
import { ApiResponse } from '../utils';
/**
* Networks api namespace
*/
export declare class Networks implements ApiNamespace {
config: ApiConfig;
constructor(config: ApiConfig);
/**
* Get a list of all TV networks, including the name.
* @returns
*/
list(): Promise<ApiResponse<Network[]>>;
}
//# sourceMappingURL=index.d.ts.map