all files / lib/components/FocusZone/ FocusZone.Props.js

100% Statements 5/5
100% Branches 2/2
100% Functions 1/1
100% Lines 5/5
1 2 3 4 5 6 7 8 9 10 11 12 13 14                 
"use strict";
(function (FocusZoneDirection) {
    /** Only react to up/down arrows. */
    FocusZoneDirection[FocusZoneDirection["vertical"] = 0] = "vertical";
    /** Only react to left/right arrows. */
    FocusZoneDirection[FocusZoneDirection["horizontal"] = 1] = "horizontal";
    /** React to all arrows. */
    FocusZoneDirection[FocusZoneDirection["bidirectional"] = 2] = "bidirectional";
})(exports.FocusZoneDirection || (exports.FocusZoneDirection = {}));
var FocusZoneDirection = exports.FocusZoneDirection;
 
//# sourceMappingURL=FocusZone.Props.js.map