import { TemplateRef } from '@angular/core'; import { Observable } from 'rxjs'; import { IFndyObjectTypeAttribute } from './fndy-object-type-attribute.model'; export interface IFndyObjectAttribute { info: IFndyObjectTypeAttribute; value$?: Observable; value: any; template: TemplateRef; }