UNPKG

@chmoyle-conga/graphql-cart

Version:

Cart module for realtime subscriptions to conga cart

22 lines 599 B
interface Callback { next: (data: any, oldData?: any) => void; error?: (error: any) => void; } interface Options { pageNumber?: number; pageSize?: number; takeSnapshot?: boolean; disableFilter?: boolean; delta?: boolean; flowName?: string; filters?: Array<string>; fetchPolicy?: 'cache-first' | 'cache-and-network' | 'network-only' | 'no-cache' | 'cache-only'; } interface EnvironmentParams { clientId: string; endpoint: string; } interface Subscription { unsubscribe: () => void; } //# sourceMappingURL=sse.interface.d.ts.map