angular.module('fbMocks') .factory('textWidthService', [function (): fb.ITextWidthService { var getWidth = function (str: string): number { return str.length; } return { getWidth: getWidth, getMaxAvaliableWidth: function (str: string, width: number, style: CSSStyleDeclaration) { return 1 } }; }]);