7 lines
166 B
TypeScript
7 lines
166 B
TypeScript
import { Type } from '@angular/core'
|
|
|
|
/** An item representing an app */
|
|
export class AppItem {
|
|
constructor(public name: string, public component: Type<any>) { }
|
|
}
|