@magicbell/magicbell-react
Version:
React components for building a notification inbox for your app
11 lines (10 loc) • 333 B
TypeScript
export interface IMagicBellContext {
images?: Partial<{
emptyInboxUrl: string;
}>;
isFetchingConfig: boolean;
}
declare const MagicBellContext: import("react").Context<IMagicBellContext>;
export default MagicBellContext;
declare const useMagicBellContext: () => IMagicBellContext;
export { useMagicBellContext };