mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
7 lines
332 B
TypeScript
7 lines
332 B
TypeScript
// Type definitions for bind-ponyfill 0.1.0
|
|
// Project: https://www.npmjs.com/package/bind-ponyfill
|
|
// Definitions by: Steve Jenkins <https://github.com/skysteve>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function ponyBind(fn: Function, that: any, ...args: Array<any>): Function;
|
|
export = ponyBind; |