-
Notifications
You must be signed in to change notification settings - Fork 0
@ralphschuler.webgl shader factory.<internal>.ShadowRoot
@ralphschuler/webgl-shader-factory.<internal>.ShadowRoot
-
↳
ShadowRoot
- ATTRIBUTE_NODE
- CDATA_SECTION_NODE
- COMMENT_NODE
- DOCUMENT_FRAGMENT_NODE
- DOCUMENT_NODE
- DOCUMENT_POSITION_CONTAINED_BY
- DOCUMENT_POSITION_CONTAINS
- DOCUMENT_POSITION_DISCONNECTED
- DOCUMENT_POSITION_FOLLOWING
- DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC
- DOCUMENT_POSITION_PRECEDING
- DOCUMENT_TYPE_NODE
- ELEMENT_NODE
- ENTITY_NODE
- ENTITY_REFERENCE_NODE
- NOTATION_NODE
- PROCESSING_INSTRUCTION_NODE
- TEXT_NODE
- activeElement
- adoptedStyleSheets
- baseURI
- childElementCount
- childNodes
- children
- delegatesFocus
- firstChild
- firstElementChild
- fullscreenElement
- host
- innerHTML
- isConnected
- lastChild
- lastElementChild
- mode
- nextSibling
- nodeName
- nodeType
- nodeValue
- onslotchange
- ownerDocument
- parentElement
- parentNode
- pictureInPictureElement
- pointerLockElement
- previousSibling
- slotAssignment
- styleSheets
- textContent
- addEventListener
- append
- appendChild
- cloneNode
- compareDocumentPosition
- contains
- dispatchEvent
- elementFromPoint
- elementsFromPoint
- getAnimations
- getElementById
- getRootNode
- hasChildNodes
- insertBefore
- isDefaultNamespace
- isEqualNode
- isSameNode
- lookupNamespaceURI
- lookupPrefix
- normalize
- prepend
- querySelector
- querySelectorAll
- removeChild
- removeEventListener
- replaceChild
- replaceChildren
• Readonly
ATTRIBUTE_NODE: 2
DocumentFragment.ATTRIBUTE_NODE
node_modules/typescript/lib/lib.dom.d.ts:16205
• Readonly
CDATA_SECTION_NODE: 4
node is a CDATASection node.
DocumentFragment.CDATA_SECTION_NODE
node_modules/typescript/lib/lib.dom.d.ts:16209
• Readonly
COMMENT_NODE: 8
node is a Comment node.
DocumentFragment.COMMENT_NODE
node_modules/typescript/lib/lib.dom.d.ts:16215
• Readonly
DOCUMENT_FRAGMENT_NODE: 11
node is a DocumentFragment node.
DocumentFragment.DOCUMENT_FRAGMENT_NODE
node_modules/typescript/lib/lib.dom.d.ts:16221
• Readonly
DOCUMENT_NODE: 9
node is a document.
DocumentFragment.DOCUMENT_NODE
node_modules/typescript/lib/lib.dom.d.ts:16217
• Readonly
DOCUMENT_POSITION_CONTAINED_BY: 16
Set when other is a descendant of node.
DocumentFragment.DOCUMENT_POSITION_CONTAINED_BY
node_modules/typescript/lib/lib.dom.d.ts:16232
• Readonly
DOCUMENT_POSITION_CONTAINS: 8
Set when other is an ancestor of node.
DocumentFragment.DOCUMENT_POSITION_CONTAINS
node_modules/typescript/lib/lib.dom.d.ts:16230
• Readonly
DOCUMENT_POSITION_DISCONNECTED: 1
Set when node and other are not in the same tree.
DocumentFragment.DOCUMENT_POSITION_DISCONNECTED
node_modules/typescript/lib/lib.dom.d.ts:16224
• Readonly
DOCUMENT_POSITION_FOLLOWING: 4
Set when other is following node.
DocumentFragment.DOCUMENT_POSITION_FOLLOWING
node_modules/typescript/lib/lib.dom.d.ts:16228
• Readonly
DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32
DocumentFragment.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC
node_modules/typescript/lib/lib.dom.d.ts:16233
• Readonly
DOCUMENT_POSITION_PRECEDING: 2
Set when other is preceding node.
DocumentFragment.DOCUMENT_POSITION_PRECEDING
node_modules/typescript/lib/lib.dom.d.ts:16226
• Readonly
DOCUMENT_TYPE_NODE: 10
node is a doctype.
DocumentFragment.DOCUMENT_TYPE_NODE
node_modules/typescript/lib/lib.dom.d.ts:16219
• Readonly
ELEMENT_NODE: 1
node is an element.
DocumentFragment.ELEMENT_NODE
node_modules/typescript/lib/lib.dom.d.ts:16204
• Readonly
ENTITY_NODE: 6
DocumentFragment.ENTITY_NODE
node_modules/typescript/lib/lib.dom.d.ts:16211
• Readonly
ENTITY_REFERENCE_NODE: 5
DocumentFragment.ENTITY_REFERENCE_NODE
node_modules/typescript/lib/lib.dom.d.ts:16210
• Readonly
NOTATION_NODE: 12
DocumentFragment.NOTATION_NODE
node_modules/typescript/lib/lib.dom.d.ts:16222
• Readonly
PROCESSING_INSTRUCTION_NODE: 7
node is a ProcessingInstruction node.
DocumentFragment.PROCESSING_INSTRUCTION_NODE
node_modules/typescript/lib/lib.dom.d.ts:16213
• Readonly
TEXT_NODE: 3
node is a Text node.
DocumentFragment.TEXT_NODE
node_modules/typescript/lib/lib.dom.d.ts:16207
• Readonly
activeElement: null
| Element
Returns the deepest element in the document through which or to which key events are being routed. This is, roughly speaking, the focused element in the document.
For the purposes of this API, when a child browsing context is focused, its container is focused in the parent browsing context. For example, if the user moves the focus to a text control in an iframe, the iframe is the element returned by the activeElement API in the iframe's node document.
Similarly, when the focused element is in a different node tree than documentOrShadowRoot, the element returned will be the host that's located in the same node tree as documentOrShadowRoot if documentOrShadowRoot is a shadow-including inclusive ancestor of the focused element, and null if not.
DocumentOrShadowRoot.activeElement
node_modules/typescript/lib/lib.dom.d.ts:7405
• adoptedStyleSheets: CSSStyleSheet
[]
DocumentOrShadowRoot.adoptedStyleSheets
node_modules/typescript/lib/lib.dom.d.ts:7407
• Readonly
baseURI: string
Returns node's node document's document base URL.
DocumentFragment.baseURI
node_modules/typescript/lib/lib.dom.d.ts:16074
• Readonly
childElementCount: number
DocumentFragment.childElementCount
node_modules/typescript/lib/lib.dom.d.ts:16763
• Readonly
childNodes: NodeListOf
<ChildNode
>
Returns the children.
DocumentFragment.childNodes
node_modules/typescript/lib/lib.dom.d.ts:16080
• Readonly
children: HTMLCollection
Returns the child elements.
DocumentFragment.children
node_modules/typescript/lib/lib.dom.d.ts:16769
• Readonly
delegatesFocus: boolean
node_modules/typescript/lib/lib.dom.d.ts:21255
• Readonly
firstChild: null
| ChildNode
Returns the first child.
DocumentFragment.firstChild
node_modules/typescript/lib/lib.dom.d.ts:16086
• Readonly
firstElementChild: null
| Element
Returns the first child that is an element, and null otherwise.
DocumentFragment.firstElementChild
node_modules/typescript/lib/lib.dom.d.ts:16775
• Readonly
fullscreenElement: null
| Element
Returns document's fullscreen element.
DocumentOrShadowRoot.fullscreenElement
node_modules/typescript/lib/lib.dom.d.ts:7413
• Readonly
host: Element
node_modules/typescript/lib/lib.dom.d.ts:21257
• innerHTML: string
node_modules/typescript/lib/lib.dom.d.ts:14279
• Readonly
isConnected: boolean
Returns true if node is connected and false otherwise.
DocumentFragment.isConnected
node_modules/typescript/lib/lib.dom.d.ts:16092
• Readonly
lastChild: null
| ChildNode
Returns the last child.
DocumentFragment.lastChild
node_modules/typescript/lib/lib.dom.d.ts:16098
• Readonly
lastElementChild: null
| Element
Returns the last child that is an element, and null otherwise.
DocumentFragment.lastElementChild
node_modules/typescript/lib/lib.dom.d.ts:16781
• Readonly
mode: ShadowRootMode
node_modules/typescript/lib/lib.dom.d.ts:21259
• Readonly
nextSibling: null
| ChildNode
Returns the next sibling.
DocumentFragment.nextSibling
node_modules/typescript/lib/lib.dom.d.ts:16104
• Readonly
nodeName: string
Returns a string appropriate for the type of node.
DocumentFragment.nodeName
node_modules/typescript/lib/lib.dom.d.ts:16110
• Readonly
nodeType: number
Returns the type of node.
DocumentFragment.nodeType
node_modules/typescript/lib/lib.dom.d.ts:16116
• nodeValue: null
| string
DocumentFragment.nodeValue
node_modules/typescript/lib/lib.dom.d.ts:16118
• onslotchange: null
| (this
: ShadowRoot
, ev
: Event
) => any
node_modules/typescript/lib/lib.dom.d.ts:21260
• Readonly
ownerDocument: Document
DocumentFragment.ownerDocument
node_modules/typescript/lib/lib.dom.d.ts:7386
• Readonly
parentElement: null
| HTMLElement
Returns the parent element.
DocumentFragment.parentElement
node_modules/typescript/lib/lib.dom.d.ts:16130
• Readonly
parentNode: null
| ParentNode
Returns the parent.
DocumentFragment.parentNode
node_modules/typescript/lib/lib.dom.d.ts:16136
• Readonly
pictureInPictureElement: null
| Element
DocumentOrShadowRoot.pictureInPictureElement
node_modules/typescript/lib/lib.dom.d.ts:7415
• Readonly
pointerLockElement: null
| Element
DocumentOrShadowRoot.pointerLockElement
node_modules/typescript/lib/lib.dom.d.ts:7417
• Readonly
previousSibling: null
| ChildNode
Returns the previous sibling.
DocumentFragment.previousSibling
node_modules/typescript/lib/lib.dom.d.ts:16142
• Readonly
slotAssignment: SlotAssignmentMode
node_modules/typescript/lib/lib.dom.d.ts:21262
• Readonly
styleSheets: StyleSheetList
Retrieves a collection of styleSheet objects representing the style sheets that correspond to each instance of a link or style object in the document.
DocumentOrShadowRoot.styleSheets
node_modules/typescript/lib/lib.dom.d.ts:7423
• textContent: null
| string
DocumentFragment.textContent
node_modules/typescript/lib/lib.dom.d.ts:16144
▸ addEventListener<K
>(type
, listener
, options?
): void
Throws a "NotSupportedError" DOMException if context object is a shadow root.
Name | Type |
---|---|
K |
extends "slotchange"
|
Name | Type |
---|---|
type |
K |
listener |
(this : ShadowRoot , ev : ShadowRootEventMap [K ]) => any
|
options? |
boolean | AddEventListenerOptions
|
void
DocumentFragment.addEventListener
node_modules/typescript/lib/lib.dom.d.ts:21264
▸ addEventListener(type
, listener
, options?
): void
Name | Type |
---|---|
type |
string |
listener |
EventListenerOrEventListenerObject |
options? |
boolean | AddEventListenerOptions
|
void
DocumentFragment.addEventListener
node_modules/typescript/lib/lib.dom.d.ts:21265
▸ append(...nodes
): void
Inserts nodes after the last child of node, while replacing strings in nodes with equivalent Text nodes.
Throws a "HierarchyRequestError" DOMException if the constraints of the node tree are violated.
Name | Type |
---|---|
...nodes |
(string | Node )[] |
void
DocumentFragment.append
node_modules/typescript/lib/lib.dom.d.ts:16789
▸ appendChild<T
>(node
): T
Name | Type |
---|---|
T |
extends Node
|
Name | Type |
---|---|
node |
T |
T
DocumentFragment.appendChild
node_modules/typescript/lib/lib.dom.d.ts:16146
▸ cloneNode(deep?
): Node
Returns a copy of node. If deep is true, the copy also includes the node's descendants.
Name | Type |
---|---|
deep? |
boolean |
DocumentFragment.cloneNode
node_modules/typescript/lib/lib.dom.d.ts:16152
▸ compareDocumentPosition(other
): number
Returns a bitmask indicating the position of other relative to node.
Name | Type |
---|---|
other |
Node |
number
DocumentFragment.compareDocumentPosition
node_modules/typescript/lib/lib.dom.d.ts:16158
▸ contains(other
): boolean
Returns true if other is an inclusive descendant of node, and false otherwise.
Name | Type |
---|---|
other |
null | Node
|
boolean
DocumentFragment.contains
node_modules/typescript/lib/lib.dom.d.ts:16164
▸ dispatchEvent(event
): boolean
Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.
Name | Type |
---|---|
event |
Event |
boolean
DocumentFragment.dispatchEvent
node_modules/typescript/lib/lib.dom.d.ts:8217
▸ elementFromPoint(x
, y
): null
| Element
Returns the element for the specified x coordinate and the specified y coordinate.
Name | Type | Description |
---|---|---|
x |
number |
The x-offset |
y |
number |
The y-offset |
null
| Element
DocumentOrShadowRoot.elementFromPoint
node_modules/typescript/lib/lib.dom.d.ts:7429
▸ elementsFromPoint(x
, y
): Element
[]
Name | Type |
---|---|
x |
number |
y |
number |
Element
[]
DocumentOrShadowRoot.elementsFromPoint
node_modules/typescript/lib/lib.dom.d.ts:7430
▸ getAnimations(): Animation
[]
DocumentOrShadowRoot.getAnimations
node_modules/typescript/lib/lib.dom.d.ts:7432
▸ getElementById(elementId
): null
| HTMLElement
Name | Type |
---|---|
elementId |
string |
null
| HTMLElement
DocumentFragment.getElementById
node_modules/typescript/lib/lib.dom.d.ts:7387
▸ getRootNode(options?
): Node
Returns node's root.
Name | Type |
---|---|
options? |
GetRootNodeOptions |
DocumentFragment.getRootNode
node_modules/typescript/lib/lib.dom.d.ts:16170
▸ hasChildNodes(): boolean
Returns whether node has children.
boolean
DocumentFragment.hasChildNodes
node_modules/typescript/lib/lib.dom.d.ts:16176
▸ insertBefore<T
>(node
, child
): T
Name | Type |
---|---|
T |
extends Node
|
Name | Type |
---|---|
node |
T |
child |
null | Node
|
T
DocumentFragment.insertBefore
node_modules/typescript/lib/lib.dom.d.ts:16178
▸ isDefaultNamespace(namespace
): boolean
Name | Type |
---|---|
namespace |
null | string
|
boolean
DocumentFragment.isDefaultNamespace
node_modules/typescript/lib/lib.dom.d.ts:16180
▸ isEqualNode(otherNode
): boolean
Returns whether node and otherNode have the same properties.
Name | Type |
---|---|
otherNode |
null | Node
|
boolean
DocumentFragment.isEqualNode
node_modules/typescript/lib/lib.dom.d.ts:16186
▸ isSameNode(otherNode
): boolean
Name | Type |
---|---|
otherNode |
null | Node
|
boolean
DocumentFragment.isSameNode
node_modules/typescript/lib/lib.dom.d.ts:16188
▸ lookupNamespaceURI(prefix
): null
| string
Name | Type |
---|---|
prefix |
null | string
|
null
| string
DocumentFragment.lookupNamespaceURI
node_modules/typescript/lib/lib.dom.d.ts:16190
▸ lookupPrefix(namespace
): null
| string
Name | Type |
---|---|
namespace |
null | string
|
null
| string
DocumentFragment.lookupPrefix
node_modules/typescript/lib/lib.dom.d.ts:16192
▸ normalize(): void
Removes empty exclusive Text nodes and concatenates the data of remaining contiguous exclusive Text nodes into the first of their nodes.
void
DocumentFragment.normalize
node_modules/typescript/lib/lib.dom.d.ts:16198
▸ prepend(...nodes
): void
Inserts nodes before the first child of node, while replacing strings in nodes with equivalent Text nodes.
Throws a "HierarchyRequestError" DOMException if the constraints of the node tree are violated.
Name | Type |
---|---|
...nodes |
(string | Node )[] |
void
DocumentFragment.prepend
node_modules/typescript/lib/lib.dom.d.ts:16797
▸ querySelector<K
>(selectors
): null
| HTMLElementTagNameMap
[K
]
Returns the first element that is a descendant of node that matches selectors.
Name | Type |
---|---|
K |
extends keyof HTMLElementTagNameMap
|
Name | Type |
---|---|
selectors |
K |
null
| HTMLElementTagNameMap
[K
]
DocumentFragment.querySelector
node_modules/typescript/lib/lib.dom.d.ts:16803
▸ querySelector<K
>(selectors
): null
| SVGElementTagNameMap
[K
]
Name | Type |
---|---|
K |
extends keyof SVGElementTagNameMap
|
Name | Type |
---|---|
selectors |
K |
null
| SVGElementTagNameMap
[K
]
DocumentFragment.querySelector
node_modules/typescript/lib/lib.dom.d.ts:16804
▸ querySelector<K
>(selectors
): null
| MathMLElementTagNameMap
[K
]
Name | Type |
---|---|
K |
extends keyof MathMLElementTagNameMap
|
Name | Type |
---|---|
selectors |
K |
null
| MathMLElementTagNameMap
[K
]
DocumentFragment.querySelector
node_modules/typescript/lib/lib.dom.d.ts:16805
▸ querySelector<K
>(selectors
): null
| HTMLElementDeprecatedTagNameMap
[K
]
Name | Type |
---|---|
K |
extends keyof HTMLElementDeprecatedTagNameMap
|
Name | Type |
---|---|
selectors |
K |
null
| HTMLElementDeprecatedTagNameMap
[K
]
Deprecated
DocumentFragment.querySelector
node_modules/typescript/lib/lib.dom.d.ts:16807
▸ querySelector<E
>(selectors
): null
| E
Name | Type |
---|---|
E |
extends Element = Element
|
Name | Type |
---|---|
selectors |
string |
null
| E
DocumentFragment.querySelector
node_modules/typescript/lib/lib.dom.d.ts:16808
▸ querySelectorAll<K
>(selectors
): NodeListOf
<HTMLElementTagNameMap
[K
]>
Returns all element descendants of node that match selectors.
Name | Type |
---|---|
K |
extends keyof HTMLElementTagNameMap
|
Name | Type |
---|---|
selectors |
K |
NodeListOf
<HTMLElementTagNameMap
[K
]>
DocumentFragment.querySelectorAll
node_modules/typescript/lib/lib.dom.d.ts:16814
▸ querySelectorAll<K
>(selectors
): NodeListOf
<SVGElementTagNameMap
[K
]>
Name | Type |
---|---|
K |
extends keyof SVGElementTagNameMap
|
Name | Type |
---|---|
selectors |
K |
NodeListOf
<SVGElementTagNameMap
[K
]>
DocumentFragment.querySelectorAll
node_modules/typescript/lib/lib.dom.d.ts:16815
▸ querySelectorAll<K
>(selectors
): NodeListOf
<MathMLElementTagNameMap
[K
]>
Name | Type |
---|---|
K |
extends keyof MathMLElementTagNameMap
|
Name | Type |
---|---|
selectors |
K |
NodeListOf
<MathMLElementTagNameMap
[K
]>
DocumentFragment.querySelectorAll
node_modules/typescript/lib/lib.dom.d.ts:16816
▸ querySelectorAll<K
>(selectors
): NodeListOf
<HTMLElementDeprecatedTagNameMap
[K
]>
Name | Type |
---|---|
K |
extends keyof HTMLElementDeprecatedTagNameMap
|
Name | Type |
---|---|
selectors |
K |
NodeListOf
<HTMLElementDeprecatedTagNameMap
[K
]>
Deprecated
DocumentFragment.querySelectorAll
node_modules/typescript/lib/lib.dom.d.ts:16818
▸ querySelectorAll<E
>(selectors
): NodeListOf
<E
>
Name | Type |
---|---|
E |
extends Element = Element
|
Name | Type |
---|---|
selectors |
string |
NodeListOf
<E
>
DocumentFragment.querySelectorAll
node_modules/typescript/lib/lib.dom.d.ts:16819
▸ removeChild<T
>(child
): T
Name | Type |
---|---|
T |
extends Node
|
Name | Type |
---|---|
child |
T |
T
DocumentFragment.removeChild
node_modules/typescript/lib/lib.dom.d.ts:16200
▸ removeEventListener<K
>(type
, listener
, options?
): void
Name | Type |
---|---|
K |
extends "slotchange"
|
Name | Type |
---|---|
type |
K |
listener |
(this : ShadowRoot , ev : ShadowRootEventMap [K ]) => any
|
options? |
boolean | EventListenerOptions
|
void
DocumentFragment.removeEventListener
node_modules/typescript/lib/lib.dom.d.ts:21266
▸ removeEventListener(type
, listener
, options?
): void
Name | Type |
---|---|
type |
string |
listener |
EventListenerOrEventListenerObject |
options? |
boolean | EventListenerOptions
|
void
DocumentFragment.removeEventListener
node_modules/typescript/lib/lib.dom.d.ts:21267
▸ replaceChild<T
>(node
, child
): T
Name | Type |
---|---|
T |
extends Node
|
Name | Type |
---|---|
node |
Node |
child |
T |
T
DocumentFragment.replaceChild
node_modules/typescript/lib/lib.dom.d.ts:16202
▸ replaceChildren(...nodes
): void
Replace all children of node with nodes, while replacing strings in nodes with equivalent Text nodes.
Throws a "HierarchyRequestError" DOMException if the constraints of the node tree are violated.
Name | Type |
---|---|
...nodes |
(string | Node )[] |
void
DocumentFragment.replaceChildren
node_modules/typescript/lib/lib.dom.d.ts:16827
- @ralphschuler/ai-function-caller
- index
- types/AIFunction
- types/Message
- @ralphschuler/assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- error
- index
- util
- @ralphschuler/better-map
- @ralphschuler/better-set
- @ralphschuler/binary-serializer
- @ralphschuler/bit-mask
- @ralphschuler/complex-compare
- @ralphschuler/i811n
- @ralphschuler/logger
- Color
- ColorMap
- Logger
- animations/BallonAnimation
- animations/BaseAnimation
- animations/BombAnimation
- animations/BouncingBallAnimation
- animations/ClockAnimation
- animations/DotsAnimation
- animations/HorizontalBarAnimation
- animations/PongAnimation
- animations/ProgressAnimation
- animations/ProgressBarAnimation
- animations/SpinnerAnimation
- animations/VerticalBarAnimation
- enums/LogLevel
- index
- interfaces/IColor
- interfaces/IMessage
- types/ColorName
- types/Colors
- @ralphschuler/lsystem
- @ralphschuler/mixin-class-factory
- @ralphschuler/neuronal-network
- @ralphschuler/parser-combinator
- index
- inputTypes
- parser
- unicode
- @ralphschuler/prom-metrics-decorator
- @ralphschuler/prom-metrics-parser
- @ralphschuler/random
- PseudoRandomItemSelector
- PseudoRandomNumberGenerator
- Seed
- index
- strategies
- strategy
- strategy
- strategy
- strategy
- strategy
- strategy
- types
- type
- type
- type
- @ralphschuler/safe-array
- @ralphschuler/slot-mashine
- @ralphschuler/state-store
- StateStore
- index
- type
- type
- type
- type
- type
- type
- type
- type
- util
- @ralphschuler/stats-tracker
- @ralphschuler/ts-error
- error
- index
- type
- util
- util
- util
- util
- @ralphschuler/webgl-sand-engine
- index
- pixel-renderer
- @ralphschuler/webgl-shader-factory
- "node:stream/consumers"
- "node:stream/promises"
- ChatCompletionSnapshot
- Choice
- Message
- ToolCall
- EventEmitter
- FormData
- OpenAI
- OpenAI
- Audio
- Speech
- Transcriptions
- Translations
- Beta
- Assistants
- Assistant
- AssistantCreateParams
- AssistantUpdateParams
- Files
- Chat
- Threads
- Messages
- Files
- MessageContentImageFile
- MessageContentText
- Text
- FileCitation
- FilePath
- Runs
- RequiredActionFunctionToolCall
- Run
- RequiredAction
- RunCreateParams
- RunSubmitToolOutputsParams
- Steps
- CodeToolCall
- CodeInterpreter
- Image
- FunctionToolCall
- MessageCreationStepDetails
- RunStep
- ThreadCreateAndRunParams
- Thread
- ThreadCreateParams
- Chat
- Completions
- ChatCompletion
- ChatCompletionAssistantMessageParam
- ChatCompletionChunk
- Choice
- Delta
- ToolCall
- ChatCompletionContentPartImage
- ChatCompletionCreateParams
- ChatCompletionMessage
- ChatCompletionMessageToolCall
- ChatCompletionNamedToolChoice
- Completions
- CompletionChoice
- CompletionCreateParams
- Edits
- Edit
- Embeddings
- CreateEmbeddingResponse
- Files
- FineTunes
- FineTune
- FineTuneCreateParams
- FineTuneListEventsParams
- FineTuning
- Jobs
- FineTuningJob
- JobCreateParams
- Images
- Models
- Moderations
- Moderation
- internal
- finished
- pipeline
- "node:stream/consumers"
- "node:stream/promises"
- EventEmitter
- internal
- finished
- pipeline
- Counter
- Gauge
- Histogram
- Summary