mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-08 18:28:17 +08:00
13 lines
313 B
TypeScript
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; |