Is it possible to partially implement an interface?
export interface AuthorizeUser {
RQBody: {
login: string;
password: string;
};
RSBody: {
authorizationResult: AuthorizationResult;
};
};
class AuthorizeUserRQBody implements AuthorizeUser['RQBody'] {
@IsString()
login: string;
@IsString()
password: string;
}
I encountered the issue
A class can only implement an identifier/qualified-name with optional type arguments.