main
Last change
on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
313 bytes
|
Rev | Line | |
---|
[79a0317] | 1 | import callBind from 'call-bind-apply-helpers';
|
---|
| 2 |
|
---|
| 3 | declare function callBoundIntrinsic(
|
---|
| 4 | name: string,
|
---|
| 5 | allowMissing?: false
|
---|
| 6 | ): ReturnType<typeof callBind>;
|
---|
| 7 |
|
---|
| 8 | declare function callBoundIntrinsic(
|
---|
| 9 | name: string,
|
---|
| 10 | allowMissing: true
|
---|
| 11 | ): undefined | ReturnType<typeof callBind>;
|
---|
| 12 |
|
---|
| 13 | export = callBoundIntrinsic; |
---|
Note:
See
TracBrowser
for help on using the repository browser.