UNPKG

ngx-nebular-formly

Version:

Ngx Formly integration for Nebular UI

17 lines (16 loc) 532 B
import { PipeTransform } from '@angular/core'; import { FormlyFieldConfig } from '@ngx-formly/core'; import { Observable } from 'rxjs'; interface ISelectOption { label: string; disabled?: boolean; value?: any; group?: ISelectOption[]; } export declare class FormlySelectOptionsPipe implements PipeTransform { transform(options: any, field?: FormlyFieldConfig): Observable<ISelectOption[]>; private transformOptions; private transformOption; private transformSelectProps; } export {};