7 lines
141 B
TypeScript
7 lines
141 B
TypeScript
|
// #docregion
|
||
|
import { Type } from '@angular/core';
|
||
|
|
||
|
export class AdItem {
|
||
|
constructor(public component: Type<any>, public data: any) {}
|
||
|
}
|