Files
dndmaster/backend/node_modules/call-bound/index.d.ts
T
Marces Zastrow dab55442be ++
Added already existing code for further development
2024-12-18 10:59:28 +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;