HarshvardhanCn01/Voice-Assistant
0
1import callBind from 'call-bind-apply-helpers';2 3declare function callBoundIntrinsic(4 name: string,5 allowMissing?: false6): ReturnType<typeof callBind>;7 8declare function callBoundIntrinsic(9 name: string,10 allowMissing: true11): undefined | ReturnType<typeof callBind>;12 13export = callBoundIntrinsic;