Frontend/25_01_07/mai/node_modules/call-bound/index.d.ts
szabomarton 7f4a15b9c3 asd
2025-01-28 11:38:27 +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;