biofriction-wp-theme/node_modules/rx/ts/core/internal/bindcallback.ts

10 lines
216 B
TypeScript
Raw Permalink Normal View History

2021-10-26 14:18:09 +02:00
module Rx {
export module internals {
export var bindCallback: (func: Function, thisArg: any, argCount: number) => Function;
}
}
(function() {
Rx.internals.bindCallback(() => {}, null, 100);
});