UNPKG

angular-formio

Version:

The Form.io dynamic form and data management system for Angular.

16 lines (15 loc) 617 B
import { OnInit } from '@angular/core'; import { Router, ActivatedRoute } from '@angular/router'; import { FormioResourceService } from './resource.service'; import { FormioResourceConfig } from './resource.config'; export declare class FormioResourceIndexComponent implements OnInit { service: FormioResourceService; route: ActivatedRoute; router: Router; config: FormioResourceConfig; gridSrc?: string; gridQuery: any; constructor(service: FormioResourceService, route: ActivatedRoute, router: Router, config: FormioResourceConfig); ngOnInit(): void; onSelect(row: any): void; }