UNPKG

@prettyfluid/zentinel

Version:

Integration helper for Zentinel

11 lines (10 loc) 338 B
import { ZentinelMessageTypes } from ".."; import { ZentinelResponse } from "./messaging"; export interface ZentinelInitOptions { url: string; zentinelSiteUrl: string; clientId?: string; messageInterceptor: (response: ZentinelResponse<ZentinelMessageTypes>) => Promise<any>; } export interface ZentinelLoadDataOptions { }