intercom-client
Version:
Official Node bindings to the Intercom API
17 lines (16 loc) • 703 B
TypeScript
import type { BaseClientOptions } from "../../../../BaseClient.js";
import { type NormalizedClientOptionsWithAuth } from "../../../../BaseClient.js";
import { FeedsClient } from "../resources/feeds/client/Client.js";
import { ItemsClient } from "../resources/items/client/Client.js";
export declare namespace NewsClient {
interface Options extends BaseClientOptions {
}
}
export declare class NewsClient {
protected readonly _options: NormalizedClientOptionsWithAuth<NewsClient.Options>;
protected _items: ItemsClient | undefined;
protected _feeds: FeedsClient | undefined;
constructor(options?: NewsClient.Options);
get items(): ItemsClient;
get feeds(): FeedsClient;
}