From 0f104a6c01b3ddf24f85625ab201efa0428469bb Mon Sep 17 00:00:00 2001 From: "deepsource-dev-autofix[bot]" <61578317+deepsource-dev-autofix[bot]@users.noreply.github.com> Date: Tue, 25 Jan 2022 06:36:09 +0000 Subject: [PATCH] Fix explicit type declarations --- bad/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bad/index.ts b/bad/index.ts index dde3ce0..c41bec0 100644 --- a/bad/index.ts +++ b/bad/index.ts @@ -1,8 +1,8 @@ import * as prettier from 'prettier' -const x: string = "xx" +const x = "xx" -const a: string = "q" +const a = "q" const z = 1 console.log(z + x)