angular-formio
Version:
The Form.io dynamic form and data management system for Angular.
21 lines (17 loc) • 365 B
text/typescript
import { Injectable } from '@angular/core';
export interface FormioAuthFormConfig {
path?: string;
form?: string;
component?: any;
}
export interface FormioAuthRouteConfig {
auth?: any,
login?: any,
register?: any
}
()
export class FormioAuthConfig {
component?: any;
login?: FormioAuthFormConfig;
register?: FormioAuthFormConfig;
}