Add return type

This commit is contained in:
László Károlyi 2022-10-29 19:28:02 +02:00
parent b9d1012ae7
commit be3827b746
Signed by: karolyi
GPG Key ID: 2DCAF25E55735BFE
1 changed files with 1 additions and 1 deletions

View File

@ -3,6 +3,6 @@ import { parse as YamlParse } from 'yaml'
export function run() {
const content = readFileSync('config.yaml', 'utf8')
const CONFIG = YamlParse(content)
const CONFIG: object = YamlParse(content)
console.debug(CONFIG)
}