T extends Entry<T> -> T type error fix

This commit is contained in:
2025-03-05 19:47:59 -05:00
parent 9856b138df
commit b7babb665e
3 changed files with 4 additions and 4 deletions

View File

@ -11,7 +11,7 @@ const enum Permissions {
none
}
interface Entry<T> {
interface Entry<T extends Entry<T>> {
readonly name: string,
readonly type: EntryType,
readonly inner: T,