@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?
23 lines (22 loc) • 880 B
TypeScript
import { EventEmitter } from '@angular/core';
import { PipeComponentInterface } from '../common/pipe.component.interface';
import * as i0 from "@angular/core";
export declare class ShareComponent implements PipeComponentInterface {
shouldDisplay: boolean;
source: string;
id: string;
name: string;
shareList: any[];
disabled: boolean;
active: boolean;
validate: (item: any, newValue: any) => boolean;
onIntoComponentChange: EventEmitter<any>;
private shareInfo;
keyup(event: any): void;
change(event: any): void;
toggleShare(): void;
static settingsPatterns(): string[];
transform(source: any, data: any, args: any[]): void;
static ɵfac: i0.ɵɵFactoryDeclaration<ShareComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ShareComponent, "share-component", never, {}, {}, never, never, false, never>;
}