UNPKG

sy-bind

Version:

A lightweight binding framework for Cocos Creator

5 lines (4 loc) 239 B
export declare function CBind(targetClassOrProperty: string): (target: any, propertyKey: string) => void; export declare function Bind(): <T extends new (...args: any[]) => {}>(constructor: T) => { new (...args: any[]): {}; } & T;