jadq-x-vue
Version:
Craft AI-driven interfaces effortlessly
22 lines (21 loc) • 1.11 kB
TypeScript
import { ComputedRef } from "vue";
import { BubbleContextProps } from "./interface";
export declare const globalBubbleContextApi: import("vue").ShallowRef<BubbleContextProps>;
export declare const useBubbleContextProvider: (value: ComputedRef<BubbleContextProps>) => void;
export declare const useBubbleContextInject: () => ComputedRef<BubbleContextProps>;
export declare const BubbleContextProvider: import("vue").DefineComponent<{
value: {
type: import("vue").PropType<BubbleContextProps>;
default: BubbleContextProps;
};
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
[key: string]: any;
}>[], unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
value: {
type: import("vue").PropType<BubbleContextProps>;
default: BubbleContextProps;
};
}>>, {
value: BubbleContextProps;
}, {}>;
export default BubbleContextProvider;