ant-design-x-vue
Version:
Craft AI-driven interfaces effortlessly
22 lines (21 loc) • 1.23 kB
TypeScript
import { ComputedRef } from "vue";
import { AttachmentContextProps } from "./interface";
export declare const globalAttachmentContextApi: import("vue").ShallowRef<AttachmentContextProps, AttachmentContextProps>;
export declare const useAttachmentContextProvider: (value: ComputedRef<AttachmentContextProps>) => void;
export declare const useAttachmentContextInject: () => ComputedRef<AttachmentContextProps>;
export declare const AttachmentContextProvider: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
value: {
type: import("vue").PropType<AttachmentContextProps>;
default: AttachmentContextProps;
};
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
[key: string]: any;
}>[], {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
value: {
type: import("vue").PropType<AttachmentContextProps>;
default: AttachmentContextProps;
};
}>> & Readonly<{}>, {
value: AttachmentContextProps;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
export default AttachmentContextProvider;