@fluent-form/core
Version:
An Angular dynamic forms library powered by Fluent API and JSON.
14 lines (13 loc) • 566 B
TypeScript
import { type PipeTransform, TemplateRef } from '@angular/core';
import type { SafeAny } from '@ngify/core';
import * as i0 from "@angular/core";
/**
* @internal
*/
export declare class FluentTemplatePipe implements PipeTransform {
private readonly templates;
transform<T>(value: T): T | TemplateRef<SafeAny>;
transform<T, U>(value: T, defaultValue: U): NonNullable<T> | U | TemplateRef<SafeAny>;
static ɵfac: i0.ɵɵFactoryDeclaration<FluentTemplatePipe, never>;
static ɵpipe: i0.ɵɵPipeDeclaration<FluentTemplatePipe, "template", true>;
}