Skip to content
Snippets Groups Projects
Commit 23a0d44b authored by Alex Yang's avatar Alex Yang
Browse files

fix: jsr disallow global type

parent 3b501de0
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,7 @@ import {
EventCaller,
getEventCaller,
} from "../internal/context/EventCaller.js";
import type { LLMEndEvent, LLMStartEvent } from "../llm/types.js";
export class LlamaIndexCustomEvent<T = any> extends CustomEvent<T> {
reason: EventCaller | null;
......@@ -30,21 +31,19 @@ export class LlamaIndexCustomEvent<T = any> extends CustomEvent<T> {
}
/**
* This type is used to define the event maps for the Llamaindex package.
* This type is used to define the event maps.
*/
export interface LlamaIndexEventMaps {}
declare module "llamaindex" {
interface LlamaIndexEventMaps {
/**
* @deprecated
*/
retrieve: CustomEvent<RetrievalCallbackResponse>;
/**
* @deprecated
*/
stream: CustomEvent<StreamCallbackResponse>;
}
export interface LlamaIndexEventMaps {
/**
* @deprecated
*/
retrieve: CustomEvent<RetrievalCallbackResponse>;
/**
* @deprecated
*/
stream: CustomEvent<StreamCallbackResponse>;
"llm-start": LLMStartEvent;
"llm-end": LLMEndEvent;
}
//#region @deprecated remove in the next major version
......
......@@ -21,13 +21,6 @@ export type LLMEndEvent = LLMBaseEvent<
}
>;
declare module "llamaindex" {
interface LlamaIndexEventMaps {
"llm-start": LLMStartEvent;
"llm-end": LLMEndEvent;
}
}
/**
* @internal
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment