import { Observable } from 'rxjs'; import { ColumnTable } from './column'; /** * column document fields */ export interface DocumentColumnTable extends ColumnTable { /** * custom http subscriber */ httpSubscribe?: ({ data, column }: { data: any; column: any; }) => Observable; /** * custom map to http subscriber */ mapHttpSubscribe?: ({ response, component }: { response: any; component: any; }) => any; }