refactor: remove unnecessary type alias

This commit is contained in:
Xymorot 2020-08-08 18:25:30 +02:00
parent fc391a02e5
commit bbc04d4467
1 changed files with 1 additions and 1 deletions

View File

@ -1 +1 @@
type DecoratorFactory<T, U> = (target: T, propertyKey: string, descriptor: PropertyDescriptor) => void;
type DecoratorFactory<T> = (target: T, propertyKey: string, descriptor: PropertyDescriptor) => void;