UNPKG

@event-inc/pipelines

Version:

Event Inc is a fully managed event bus lets you send and receive data across mission-critical cloud apps, databases and warehouses.

8 lines 252 B
import { Client } from '@event-inc/connections' interface ClientConfig { environment?: 'sandbox' | 'production'; baseUrl?: string; } export const createClient = (secret: string, configs: ClientConfig = {}) => { return new Client(secret, configs); };