Use saner type
This commit is contained in:
parent
9efe41090e
commit
1402b04b51
1 changed files with 1 additions and 1 deletions
2
index.ts
2
index.ts
|
@ -28,7 +28,7 @@ const BUNDLER_OPTIONS = {
|
||||||
};
|
};
|
||||||
|
|
||||||
function readAccounts(): ReadonlyArray<Account> {
|
function readAccounts(): ReadonlyArray<Account> {
|
||||||
const rawAccounts: Object = jsyaml.safeLoad(
|
const rawAccounts: object = jsyaml.safeLoad(
|
||||||
readFileSync(join(__dirname, 'accounts.yml')).toString()
|
readFileSync(join(__dirname, 'accounts.yml')).toString()
|
||||||
);
|
);
|
||||||
return Object.values(
|
return Object.values(
|
||||||
|
|
Reference in a new issue