@fluent-form/core
Version:
An Angular dynamic forms library powered by Fluent API and JSON.
12 lines (11 loc) • 468 B
TypeScript
import { type PipeTransform } from '@angular/core';
import type { AbstractSchema, Column } from '../schemas';
import * as i0 from "@angular/core";
/**
* @internal
*/
export declare class FluentColumnPipe implements PipeTransform {
transform<T extends keyof Column>(value: AbstractSchema['col'], type: T): Column[T];
static ɵfac: i0.ɵɵFactoryDeclaration<FluentColumnPipe, never>;
static ɵpipe: i0.ɵɵPipeDeclaration<FluentColumnPipe, "col", true>;
}