3 lines
183 B
TypeScript
Raw Normal View History

2020-05-19 11:43:42 +03:00
export declare function bind<T extends Function>(target: object, propertyKey: string, descriptor: TypedPropertyDescriptor<T>): TypedPropertyDescriptor<T> | void;
export default bind;