From bbc04d44678962a919662882dc767118a9cc8eb2 Mon Sep 17 00:00:00 2001 From: Xymorot Date: Sat, 8 Aug 2020 18:25:30 +0200 Subject: [PATCH] refactor: remove unnecessary type alias --- types/decorator-factory.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/decorator-factory.d.ts b/types/decorator-factory.d.ts index 018a9aa..e0cd938 100644 --- a/types/decorator-factory.d.ts +++ b/types/decorator-factory.d.ts @@ -1 +1 @@ -type DecoratorFactory = (target: T, propertyKey: string, descriptor: PropertyDescriptor) => void; +type DecoratorFactory = (target: T, propertyKey: string, descriptor: PropertyDescriptor) => void;