UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

5 lines (4 loc) 154 B
export type Supplier<T> = T | Promise<T> | (() => T | Promise<T>); export declare const Supplier: { get: <T>(supplier: Supplier<T>) => Promise<T>; };