@lucasferreiralsf/angular-frontend-library
Version:
This is a set of custom angular components to easy the development of any Subway frontend project.
19 lines (18 loc) • 658 B
TypeScript
import { EventEmitter, OnInit } from '@angular/core';
export declare class DataTableService implements OnInit {
buttonRowEvent: EventEmitter<{}>;
topButtonEvent: EventEmitter<{}>;
inputDataEvent: EventEmitter<{}>;
filterLimparEvent: EventEmitter<{}>;
filterPesquisarEvent: EventEmitter<{}>;
data: any;
constructor();
ngOnInit(): void;
getData(): any;
setDataSource(element: any): any;
setInputData(element: any): void;
buttonRowClick(event: string, index: any): void;
topButtonClick(eventSlug: string): void;
filterLimparButtonClick(): void;
filterPesquisarButtonClick(): void;
}