intercom-client
Version:
Official Node bindings to the Intercom API
17 lines (16 loc) • 707 B
text/typescript
import type { BaseClientOptions } from "../../../../BaseClient.mjs";
import { type NormalizedClientOptionsWithAuth } from "../../../../BaseClient.mjs";
import { FeedsClient } from "../resources/feeds/client/Client.mjs";
import { ItemsClient } from "../resources/items/client/Client.mjs";
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;
}