From 048547828d5e70e93a3b107ada97d30253e42778 Mon Sep 17 00:00:00 2001 From: RMidhunSuresh Date: Wed, 17 Nov 2021 19:41:03 +0530 Subject: [PATCH] Remove type Func --- src/utils/Disposables.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/utils/Disposables.ts b/src/utils/Disposables.ts index 9671665f..19a5983c 100644 --- a/src/utils/Disposables.ts +++ b/src/utils/Disposables.ts @@ -14,7 +14,6 @@ See the License for the specific language governing permissions and limitations under the License. */ -type Func = () => void; export interface IDisposable { dispose(): void; }