UNPKG

@hubspot/api-client

Version:

NodeJS v3 [HubSpot API](https://developers.hubspot.com/docs/api/overview) SDK(Client) files

13 lines (12 loc) 637 B
import BaseDiscovery from '../../BaseDiscovery'; import type CallingDiscovery from './calling/CallingDiscovery'; import type CardsDiscovery from './cards/CardsDiscovery'; import type VideoconferencingDiscovery from './videoconferencing/VideoconferencingDiscovery'; export default class ExtensionsDiscovery extends BaseDiscovery { protected _calling: CallingDiscovery | undefined; protected _cards: CardsDiscovery | undefined; protected _videoconferencing: VideoconferencingDiscovery | undefined; get calling(): CallingDiscovery; get cards(): CardsDiscovery; get videoconferencing(): VideoconferencingDiscovery; }