import { Observable } from 'rxjs'; export interface IAbstractViewComponent { document$: Observable; document: D | null; documentId: string; tableId: string | null; formId: string | null; collectionPath: string | null; readonly context: any; readonly data: any; close(): void; }