@fluent-form/core
Version:
An Angular dynamic forms library powered by Fluent API and JSON.
15 lines (14 loc) • 662 B
TypeScript
import { type PipeTransform } from '@angular/core';
import { AbstractControl } from '@angular/forms';
import type { SafeAny } from '@ngify/core';
import type { AbstractSchema, MaybeSchemaReactiveFn } from '../schemas';
import * as i0 from "@angular/core";
/**
* @internal
*/
export declare class FluentReactivePipe implements PipeTransform {
private readonly transformer;
transform<T>(value: MaybeSchemaReactiveFn<SafeAny, T>, model: unknown, schema: AbstractSchema, control: AbstractControl): T;
static ɵfac: i0.ɵɵFactoryDeclaration<FluentReactivePipe, never>;
static ɵpipe: i0.ɵɵPipeDeclaration<FluentReactivePipe, "reactive", true>;
}