intern-Assignment/Node-Assignments/formPrac/node_modules/call-bound/index.d.ts

13 lines
313 B
TypeScript
Raw Permalink Normal View History

2025-01-31 09:50:39 +00:00
import callBind from 'call-bind-apply-helpers';
declare function callBoundIntrinsic(
name: string,
allowMissing?: false
): ReturnType<typeof callBind>;
declare function callBoundIntrinsic(
name: string,
allowMissing: true
): undefined | ReturnType<typeof callBind>;
export = callBoundIntrinsic;