9 lines
190 B
JavaScript
Raw Normal View History

2015-04-21 19:38:17 +02:00
/**
* Represents a cancellation caused by navigating away
* before the previous transition has fully resolved.
*/
2015-04-29 11:02:32 +02:00
"use strict";
2015-04-21 19:38:17 +02:00
function Cancellation() {}
module.exports = Cancellation;