intercom-client
Version:
Official Node bindings to the Intercom API
14 lines (13 loc) • 506 B
TypeScript
/**
* This file was auto-generated by Fern from our API Definition.
*/
import * as Intercom from "../../../index";
export type PaginatedResponseDataItem = Intercom.unstable.PaginatedResponseDataItem.NewsItem | Intercom.unstable.PaginatedResponseDataItem.Newsfeed;
export declare namespace PaginatedResponseDataItem {
interface NewsItem extends Intercom.unstable.NewsItem {
type: "news-item";
}
interface Newsfeed extends Intercom.unstable.Newsfeed {
type: "newsfeed";
}
}