UNPKG

aurelia-bootstrap

Version:
46 lines (33 loc) 926 B
/* */ define(['exports'], function (exports) { 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); function mi(name) { throw new Error('History must implement ' + name + '().'); } var History = exports.History = function () { function History() { } History.prototype.activate = function activate(options) { mi('activate'); }; History.prototype.deactivate = function deactivate() { mi('deactivate'); }; History.prototype.getAbsoluteRoot = function getAbsoluteRoot() { mi('getAbsoluteRoot'); }; History.prototype.navigate = function navigate(fragment, options) { mi('navigate'); }; History.prototype.navigateBack = function navigateBack() { mi('navigateBack'); }; History.prototype.setTitle = function setTitle(title) { mi('setTitle'); }; return History; }(); });