sy-bind
Version:
A lightweight binding framework for Cocos Creator
12 lines (11 loc) • 387 B
TypeScript
export declare namespace sy_types {
type ComponentUpdateStrategy<T> = (component: T, value: any) => void;
type PropMetadata = {
[propertyName: string]: Set<string>;
};
type Proxiable = object | any[];
type SyList<T> = T[];
type comm_property_name = string | symbol | number;
type bind_func = Set<Function>;
type bind_target = object;
}