UNPKG
@ni-web-infra/common-utils
Version:
latest (1.2.0)
1.2.0
1.1.0
1.1.0-beta.1
1.0.0
NI util function library
github.com/NI-Web-Infra-Team/common-utils
NI-Web-Infra-Team/common-utils
@ni-web-infra/common-utils
/
types
/
lib
/
computedTextWidth.d.ts
8 lines
(7 loc)
•
217 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
/** * 计算文本宽度 *
@param
{string} text - 文本 *
@param
{string} font - 字体 *
@returns
{number} - 宽度,单位 px */
export
declare
function
computedTextWidth
(
text:
string
, font:
string
):
number
;