UNPKG
xe-utils-es
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
JavaScript 函数库、工具类
xe-utils-es
/
types
/
template.d.ts
9 lines
(8 loc)
•
233 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
/** * 解析动态字符串模板 *
@param
{
atring
} str 字符串模板 *
@param
{
any | any[]
} args 对象 *
@param
{
any
}
options
*/
declare
function
template
(
str
:
any
,
args
:
any
,
options
:
any
):
string
;
export
default
template;