Interface AttributeChangeSpec<T, K>

interface AttributeChangeSpec<T, K> {
    t: "attr";
    prev: null | T[K];
    next: null | T[K];
}

Type Parameters

  • T

  • K extends keyof T = keyof T

Properties

Properties

t: "attr"
prev: null | T[K]
next: null | T[K]

Generated using TypeDoc