@assistant-ui/react
Version:
Typescript/React library for AI Chat
10 lines • 436 B
TypeScript
import type { FC, PropsWithChildren } from "react";
import { ThreadRuntime } from "../../api/ThreadRuntime";
import { ThreadListItemRuntime } from "../../api/ThreadListItemRuntime";
type ThreadProviderProps = {
listItemRuntime: ThreadListItemRuntime;
runtime: ThreadRuntime;
};
export declare const ThreadRuntimeProvider: FC<PropsWithChildren<ThreadProviderProps>>;
export {};
//# sourceMappingURL=ThreadRuntimeProvider.d.ts.map