Class: LlamaIndexCustomEvent<T>
Extends
defaultCustomEvent
<T
>
Type parameters
• T = any
Constructors
new LlamaIndexCustomEvent()
private
new LlamaIndexCustomEvent<T
>(event
,options
?):LlamaIndexCustomEvent
<T
>
Parameters
• event: string
• options?: CustomEventInit
<any
> & object
Returns
Overrides
CustomEvent<T>.constructor
Source
packages/core/src/callbacks/CallbackManager.ts:22
Properties
#private
private
#private:any
Inherited from
CustomEvent.#private
Source
packages/env/dist/type/utils.d.ts:40
AT_TARGET
readonly
AT_TARGET:2
Inherited from
CustomEvent.AT_TARGET
Source
node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.dom.d.ts:8145
BUBBLING_PHASE
readonly
BUBBLING_PHASE:3
Inherited from
CustomEvent.BUBBLING_PHASE
Source
node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.dom.d.ts:8146
CAPTURING_PHASE
readonly
CAPTURING_PHASE:1
Inherited from
CustomEvent.CAPTURING_PHASE
Source
node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.dom.d.ts:8144
NONE
readonly
NONE:0
Inherited from
CustomEvent.NONE
Source
node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.dom.d.ts:8143
bubbles
readonly
bubbles:boolean
Returns true or false depending on how event was initialized. True if event goes through its target's ancestors in reverse tree order, and false otherwise.
Inherited from
CustomEvent.bubbles
Source
node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.dom.d.ts:8040
cancelBubble
cancelBubble:
boolean
Deprecated
Inherited from
CustomEvent.cancelBubble
Source
node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.dom.d.ts:8046
cancelable
readonly
cancelable:boolean
Returns true or false depending on how event was initialized. Its return value does not always carry meaning, but true can indicate that part of the operation during which event was dispatched, can be canceled by invoking the preventDefault() method.
Inherited from
CustomEvent.cancelable
Source
node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.dom.d.ts:8052
composed
readonly
composed:boolean
Returns true or false depending on how event was initialized. True if event invokes listeners past a ShadowRoot node that is the root of its target, and false otherwise.