@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?
20 lines (19 loc) • 808 B
TypeScript
import { EventEmitter } from '@angular/core';
import { PipeComponentInterface } from '../common/pipe.component.interface';
import * as i0 from "@angular/core";
export declare class LastUpdateComponent implements PipeComponentInterface {
source: any;
id: string;
name: string;
showIcon: boolean;
disabled: boolean;
active: boolean;
validate: (item: any, newValue: any) => boolean;
count: string;
onIntoComponentChange: EventEmitter<any>;
static settingsPatterns(): string[];
transform(source: any, data: any, args: any[]): void;
formatDate(): string;
static ɵfac: i0.ɵɵFactoryDeclaration<LastUpdateComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<LastUpdateComponent, "lastupdate-component", never, {}, {}, never, never, false, never>;
}