Overview
Low-level shared types and utilities used throughout core/state/parser packages.
API Reference
Shared runtime and type utilities.
export interface IPropertyChange {
chain?: IChainPart[];
target: unknown;
index?: unknown;
newValue?: unknown;
arguments?: unknown[];
setValue?: (value: unknown) => void;
}import type { IPropertyChange } from '@rs-x/core';6 members in this interface.
arguments?: unknown[]Type
unknown[]
chain?: IChainPart[]Type
index?: unknownType
unknown
newValue?: unknownType
unknown
setValue?: (value: unknown) => voidType
(value: unknown) => void
target: unknownType
unknown