@wicii/chat-primitive
Version:
Vue 3 chat primitives for @ai-sdk/vue
17 lines (16 loc) • 667 B
TypeScript
import { type InjectionKey } from 'vue';
export declare const composerInjectionKey: InjectionKey<{
submitForm: () => void;
}>;
export declare function injectComposerContext(): {
submitForm: () => void;
};
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
default?: (props: {}) => any;
}>;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};