@jeanmemory/react
Version:
React SDK for Jean Memory - Build personalized AI chatbots in 5 lines of code
15 lines (14 loc) • 479 B
TypeScript
/**
* Jean Memory React SDK - Sign In With Jean Component
* OAuth 2.1 PKCE authentication flow
*/
import React from 'react';
interface SignInWithJeanProps {
onSuccess: (user: any) => void;
onError?: (error: Error) => void;
apiKey?: string;
className?: string;
children?: React.ReactNode;
}
export declare function SignInWithJean({ onSuccess, onError, apiKey, className, children }: SignInWithJeanProps): import("react/jsx-runtime").JSX.Element;
export {};