angular-formio-gp
Version:
A fork of Form.io Angular JSON Form Renderer ========================== This library serves as a Dynamic JSON Powered Form rendering library for [Angular](https://angular.io). This works by providing a JSON schema to a ```<formio>``` Angular component,
18 lines (17 loc) • 669 B
TypeScript
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;
createText: String;
constructor(service: FormioResourceService, route: ActivatedRoute, router: Router, config: FormioResourceConfig);
ngOnInit(): void;
onSelect(row: any): void;
onCreateItem(): void;
}