aurelia / template-lint

Sanity check of Aurelia-flavor template HTML
Apache License 2.0
56 stars 17 forks source link

Base class properties not found #174

Closed arfilon closed 7 years ago

arfilon commented 7 years ago

hello ,

thanks for the grate work, on this.

i have these classes

export class Page extends PagedViwe<Ad>  {
}

export abstract class PagedViwe<T> {
    public Items = new Array<T>();
}

put i keep getting this validation message

cannot find 'Items' in type 'Page'

did i miss something?

thanks