angular-formio
Version:
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, where that f
19 lines (18 loc) • 651 B
TypeScript
import { OnDestroy, OnInit } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { FormioAuthService } from '../auth/auth.service';
import { FormioResourceService } from './resource.service';
export declare class FormioResourceComponent implements OnInit, OnDestroy {
service: FormioResourceService;
route: ActivatedRoute;
auth: FormioAuthService;
private paramsSubscription;
perms: {
delete: boolean;
edit: boolean;
};
constructor(service: FormioResourceService, route: ActivatedRoute, auth: FormioAuthService);
ngOnInit(): void;
init(): void;
ngOnDestroy(): void;
}