better-trakt
Version:
A Trakt.tv client with native Typescript support and quality of life features
29 lines (24 loc) • 651 B
text/typescript
import { ApiConfig, ApiNamespace } from '../client';
import { Network } from '../trakt';
import { ApiResponse, fetch } from '../utils';
/**
* Networks api namespace
*/
export class Networks implements ApiNamespace {
config: ApiConfig;
constructor(config: ApiConfig) {
this.config = {
apiUrl: `${config.apiUrl}/networks`,
client: config.client,
};
}
/**
* Get a list of all TV networks, including the name.
* @returns
*/
async list(): Promise<ApiResponse<Network[]>> {
const url = `${this.config.apiUrl}`;
const response = await fetch<Network[]>(this.config.client, url);
return response;
}
}