Owner
Owner API reference.
Import
import type { Owner } from "solid-js";Type signature
interface Owner { id?: string; _config: number; _snapshotScope?: boolean; _disposal: Disposable | Disposable[] | null; _parent: Owner | null; _context: Record<symbol | string, unknown>; _childCount: number; _queue: IQueue; _firstChild: Owner | null; _nextSibling: Owner | null; _prevSibling: Owner | null; _pendingDisposal: Disposable | Disposable[] | null; _pendingFirstChild: Owner | null;}Properties
id
- Type:
string
_config
- Type:
number
_snapshotScope
- Type:
boolean
_disposal
- Type:
Disposable | Disposable[] | null
_parent
- Type:
Owner | null
_context
- Type:
Record<symbol | string, unknown>
_childCount
- Type:
number
_queue
- Type:
IQueue
_firstChild
- Type:
Owner | null
_nextSibling
- Type:
Owner | null
_prevSibling
- Type:
Owner | null
_pendingDisposal
- Type:
Disposable | Disposable[] | null
_pendingFirstChild
- Type:
Owner | null