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
13 lines (12 loc) • 504 B
TypeScript
import { FormManagerService } from '../../form-manager.service';
import { ActivatedRoute, Router } from '@angular/router';
import { FormioAlerts } from '../../../components/alerts/formio.alerts';
export declare class SubmissionDeleteComponent {
service: FormManagerService;
router: Router;
route: ActivatedRoute;
alerts: FormioAlerts;
constructor(service: FormManagerService, router: Router, route: ActivatedRoute, alerts: FormioAlerts);
onDelete(): void;
onCancel(): void;
}