UNPKG

@compodoc/compodoc

Version:

The missing documentation tool for your Angular application

15 lines (11 loc) 225 B
import { Component } from '@angular/core'; interface Foo<T> { data: T; } @Component({ selector: 'app-generic', }) export class GenericComponent { title = 'generic-component'; getData(foo: Foo<object>) {} }