@cossistant/next
Version:
Next.js-ready SDK for building AI-powered support/chat widgets. Hooks + primitives, WS-driven, TypeScript-first. Next.js-ready, Tailwind optional.
16 lines (15 loc) • 479 B
TypeScript
import React from "react";
//#region ../react/src/realtime/support-provider.d.ts
type SupportRealtimeProviderProps = {
children: React.ReactNode;
};
/**
* Bridges websocket events into the core client stores so support hooks stay
* in sync without forcing refetches.
*/
declare function SupportRealtimeProvider({
children
}: SupportRealtimeProviderProps): React.ReactElement;
//#endregion
export { SupportRealtimeProvider };
//# sourceMappingURL=support-provider.d.ts.map