allow binding

This commit is contained in:
Asaki Yuki 2026-02-23 18:00:19 +07:00
parent 0b1f80da43
commit d61023195b

View file

@ -20,7 +20,7 @@ export type Array2<T> = [T, T]
export type Array3<T> = [T, T, T] export type Array3<T> = [T, T, T]
export type Array4<T> = [T, T, T, T] export type Array4<T> = [T, T, T, T]
export type Value<T> = Variable | T export type Value<T> = Variable | Binding | T
export type AnimValue<T> = Value<T | Animation> export type AnimValue<T> = Value<T | Animation>
export type BindingItem = { export type BindingItem = {