UNPKG
@anijs/load-config
Version:
latest (1.0.1)
1.0.1
1.0.0
加载配置文件
github.com/anijs6/load-config
anijs6/load-config
@anijs/load-config
/
dist
/
readJSData.d.ts
11 lines
(10 loc)
•
202 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** * 读取js配置文件数据 * *
@param
file js文件路径 *
@returns
json数据 */
declare
function
readJSData
(
file
:
string
):
Promise
<{ [
key
:
string
]:
any
; }>;
export
default
readJSData;