bindcallback.ts 216 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 module Rx { export module internals { export var bindCallback: (func: Function, thisArg: any, argCount: number) => Function; } } (function() { Rx.internals.bindCallback(() => {}, null, 100); });