Files
module4_backend_project/node_modules/call-bound/index.d.ts
T

13 lines
313 B
TypeScript
Raw Normal View History

2025-02-11 15:06:41 +01: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;