mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-09-26 19:51:42 +02:00
9 lines
193 B
TypeScript
9 lines
193 B
TypeScript
import { inject } from 'vue';
|
|
|
|
import { ChatSymbol } from '@n8n/chat/constants';
|
|
import type { Chat } from '@n8n/chat/types';
|
|
|
|
export function useChat() {
|
|
return inject(ChatSymbol) as Chat;
|
|
}
|