angular.module('fbMocks') .factory('vaerderingsdataService', [function (): fb.IVaerderingsdataService { var getIntagsrapportData = function (id: number): any { return; } var getIntagsrapportDataEncode = function (id: number): ng.IPromise { return null; } var getInloggningsDataEncoded = function (): string { return null; } return { intagsrapport: getIntagsrapportData, intagsrapportEncoded: getIntagsrapportDataEncode, getInloggningsDataEncoded: getInloggningsDataEncoded }; }]);