Update deps, enforce return type.

This commit is contained in:
Daniel Scalzi
2021-03-20 15:07:15 -04:00
parent 07ea0e8b98
commit 2540ca383e
6 changed files with 88 additions and 78 deletions

View File

@@ -24,7 +24,7 @@ export enum SchemaTypes {
ServerMetaSchema = 'ServerMetaSchema'
}
function getSchemaFileName(typeName: string) {
function getSchemaFileName(typeName: string): string {
return `${typeName}.schema.json`
}