@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?
27 lines (26 loc) • 1.02 kB
TypeScript
import { EventEmitter } from '@angular/core';
import { PipeComponentInterface } from '../common/pipe.component.interface';
import * as i0 from "@angular/core";
export declare class CheckboxComponent implements PipeComponentInterface {
data: any;
source: string;
state1: string;
state2: string;
id: string;
name: string;
onOff: boolean;
useFont: boolean;
displayable: boolean;
disabled: boolean;
active: boolean;
validate: (item: any, newValue: any) => boolean;
check: any;
uncheck: any;
onIntoComponentChange: EventEmitter<any>;
keyup(event: any): void;
click(event: any, checked: boolean): void;
static settingsPatterns(): string[];
transform(source: any, data: any, args: any[]): void;
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "checkbox-component", never, {}, { "onIntoComponentChange": "onIntoComponentChange"; }, never, never, false, never>;
}