9 lines
190 B
JavaScript
9 lines
190 B
JavaScript
|
|
/**
|
||
|
|
* Represents a cancellation caused by navigating away
|
||
|
|
* before the previous transition has fully resolved.
|
||
|
|
*/
|
||
|
|
"use strict";
|
||
|
|
|
||
|
|
function Cancellation() {}
|
||
|
|
|
||
|
|
module.exports = Cancellation;
|