mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-18 05:37:24 +08:00
6 lines
139 B
TypeScript
6 lines
139 B
TypeScript
|
|
import { createContext } from 'react';
|
||
|
|
|
||
|
|
export const ConversationContext = createContext<
|
||
|
|
null | ((isPlaying: boolean) => void)
|
||
|
|
>(null);
|