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
17 lines (16 loc) • 352 B
TypeScript
export interface FormioAuthFormConfig {
path?: string;
form?: string;
component?: any;
}
export interface FormioAuthRouteConfig {
auth?: any;
login?: any;
register?: any;
}
export declare class FormioAuthConfig {
component?: any;
delayAuth?: any;
login?: FormioAuthFormConfig;
register?: FormioAuthFormConfig;
}