@sedeh/into-pipes
Version:
Have you ever wanted to transform data in different parts of your application into interactive objects without writing a single line of code?
13 lines (12 loc) • 470 B
TypeScript
import { PipeTransform } from '@angular/core';
import { ComponentPool } from './component.pool';
import * as i0 from "@angular/core";
export declare class InToPipe implements PipeTransform {
private pool;
constructor(pool: ComponentPool);
transform(content: any, list: string): any;
private split;
private _transform;
static ɵfac: i0.ɵɵFactoryDeclaration<InToPipe, never>;
static ɵpipe: i0.ɵɵPipeDeclaration<InToPipe, "into", false>;
}