angular.module('fbMocks') .factory('mapServiceGoogleMock', ['$q', 'mapServiceGoogle', function ( $q: ng.IQService, mapServiceGoogle: fb.IMapCompanyService ): fb.IMockMapCompanyService { var setMarkers = mapServiceGoogle.setMarkers; var initialise = mapServiceGoogle.initialise; return { setMarkers: mapServiceGoogle.setMarkers, initialise: mapServiceGoogle.initialise, unsetMarkers: mapServiceGoogle.unsetMarkers }; }]);