mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-12 19:59:02 +08: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; |