mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 21:00:01 +08:00
8 lines
176 B
TypeScript
8 lines
176 B
TypeScript
import hardRejection = require('hard-rejection');
|
|
import 'hard-rejection/register';
|
|
|
|
hardRejection();
|
|
hardRejection(stack => {
|
|
stack; // $ExpectType string | undefined
|
|
});
|