API Reference

IPropertyChangeinterface

Shared runtime and type utilities.

Overview

Low-level shared types and utilities used throughout core/state/parser packages.
Quick facts
Kind
interface
Module
types
Members
6
Package
@rs-x/core

Declaration

export interface IPropertyChange {
  chain?: IChainPart[];
  target: unknown;
  index?: unknown;
  newValue?: unknown;
  arguments?: unknown[];
  setValue?: (value: unknown) => void;
}

Import

import type { IPropertyChange } from '@rs-x/core';

Members

6 members in this interface.

arguments?
propertyoptional
arguments?: unknown[]

Type

unknown[]

chain?
propertyoptional
chain?: IChainPart[]
index?
propertyoptional
index?: unknown

Type

unknown

newValue?
propertyoptional
newValue?: unknown

Type

unknown

setValue?
propertyoptional
setValue?: (value: unknown) => void

Type

(value: unknown) => void

target
property
target: unknown

Type

unknown