UNPKG

@ng-flexy/form

Version:

Flexy components and tools to build Angular 8+ applications

11 lines (10 loc) 372 B
import { PipeTransform } from '@angular/core'; import { FlexyModel } from '@ng-flexy/core'; import { SelectOptionData } from '../models/select-option.data'; export declare class FlexyOptionsMapperPipe implements PipeTransform { constructor(); transform(value: FlexyModel<any>[], mapper: { value: string; text: string; }): SelectOptionData[]; }