# micro-framework

# Functions

# core

core(str): string

返回一个根据入参拼接 Hello 前缀的字符串

# Parameters

Name Type Description
str string 需要拼接的字符串

# Returns

string

拼接 Hello 前缀后的字符串

Remarks

该方法只能传入一个参数,不支持传入多个参数

Example

调用示例

core('ziyi');

# Defined in

core/core.ts:15 (opens new window)


# hello

hello(str): string

返回一个根据入参拼接 Hello 前缀的字符串

# Parameters

Name Type Description
str string 需要拼接的字符串

# Returns

string

拼接 Hello 前缀后的字符串

Remarks

该方法只能传入一个参数,不支持传入多个参数 参数的类型只能是字符串 更多详情信息可以查看 tsdoc 文档 (opens new window)

Example

调用示例

hello('ziyi');

# Defined in

core/core.ts:35 (opens new window)