#Is this the correct typing for extending a generic class?

1 messages · Page 1 of 1 (latest)

broken forge
export default class CustomClient<Ready extends boolean = boolean> extends Client<Ready> {

not done it before, just want to check i am not inadverently breaking something in the background - had an error up until I added in the <Ready> to Client, seems like its fine as the error cleared; just wanted to check