Remove useless generic type parameter from the parameter type definition

This commit is contained in:
Convly 2022-07-06 16:02:07 +02:00
parent d587de6b19
commit 6eacbaf0b7

View File

@ -29,7 +29,7 @@ export type AttributeType =
/**
* Most basic shape of a schema attribute
*/
export interface Attribute<T extends AttributeType = AttributeType, U extends {} = {}> {
export interface Attribute<T extends AttributeType = AttributeType> {
/**
* Type of the attribute
*/