UNPKG

angular-formio

Version:

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

21 lines (17 loc) 365 B
import { Injectable } from '@angular/core'; export interface FormioAuthFormConfig { path?: string; form?: string; component?: any; } export interface FormioAuthRouteConfig { auth?: any, login?: any, register?: any } @Injectable() export class FormioAuthConfig { component?: any; login?: FormioAuthFormConfig; register?: FormioAuthFormConfig; }