HodlEye_Crypto_Price_Tracker/server/node_modules/call-bound/index.d.ts
2025-03-06 16:13:38 +01:00

13 lines
313 B
TypeScript

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;