mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
10 lines
387 B
TypeScript
10 lines
387 B
TypeScript
import type { InjectionKey } from 'vue';
|
|
|
|
import type { Chat, ChatOptions } from '@n8n/chat/types';
|
|
|
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
export const ChatSymbol = 'Chat' as unknown as InjectionKey<Chat>;
|
|
|
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
export const ChatOptionsSymbol = 'ChatOptions' as unknown as InjectionKey<ChatOptions>;
|