用工小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
313 B

2 months ago
  1. import callBind from 'call-bind-apply-helpers';
  2. declare function callBoundIntrinsic(
  3. name: string,
  4. allowMissing?: false
  5. ): ReturnType<typeof callBind>;
  6. declare function callBoundIntrinsic(
  7. name: string,
  8. allowMissing: true
  9. ): undefined | ReturnType<typeof callBind>;
  10. export = callBoundIntrinsic;