intercom-client
Version:
Official Node bindings to the Intercom API
17 lines (16 loc) • 547 B
TypeScript
/**
* This file was auto-generated by Fern from our API Definition.
*/
import * as Intercom from "../index";
export type ActionComponent = Intercom.ActionComponent.Sheet | Intercom.ActionComponent.Url | Intercom.ActionComponent.Submit;
export declare namespace ActionComponent {
interface Sheet extends Intercom.SheetActionComponent {
type: "sheet";
}
interface Url extends Intercom.UrlActionComponent {
type: "url";
}
interface Submit extends Intercom.SubmitActionComponent {
type: "submit";
}
}