File size: 313 Bytes
295e44e | 1 2 3 4 5 6 7 8 9 10 11 12 13 | 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; |