sabium-framework
Version:
Sabium Framework Componentes
21 lines (20 loc) • 535 B
TypeScript
import { Http } from '@angular/http';
import { ReqHttpService } from './req-http.service';
export declare class FiltersService {
private _http;
private http;
constructor(_http: ReqHttpService, http: Http);
getAll(url: any): any;
executeFilter(url: any, parameters: any): any;
getTables(): Promise<{
colunas: {
dataField: string;
caption: string;
}[];
data: {
id: number;
titulo: string;
sigla: string;
}[];
}[]>;
}