Update to TypeScript 3.5.x

This commit is contained in:
Jan Oberhauser
2019-06-24 10:28:18 +02:00
parent 9427aedf44
commit 1d86a2a773
8 changed files with 14 additions and 12 deletions

View File

@@ -61,8 +61,12 @@ export async function init(): Promise<IDatabaseCollections> {
await createConnection(connectionOptions);
// TODO: Fix that properly
// @ts-ignore
collections.Credentials = getRepository(entities.CredentialsEntity);
// @ts-ignore
collections.Execution = getRepository(entities.ExecutionEntity);
// @ts-ignore
collections.Workflow = getRepository(entities.WorkflowEntity);
return collections;