herman1vdb-angular2-json-schema-form-ionic
Version:
Ionic framework library for the [Angular 2 JSON Schema Form](https://github.com/dschnelldavis/angular2-json-schema-form)
30 lines (29 loc) • 1.54 kB
TypeScript
import { Framework } from 'angular2-json-schema-form';
import { IonicButtonComponent } from './widgets/button/ionic-button.component';
import { IonicInputComponent } from './widgets/input/ionic-input.component';
import { IonicCheckboxComponent } from './widgets/checkbox/ionic-checkbox.component';
import { IonicFrameworkComponent } from './ionic-framework.component';
import { IonicTextareaComponent } from './widgets/textarea/ionic-textarea.component';
import { IonicSelectComponent } from './widgets/select/ionic-select.component';
import { IonicToggleComponent } from './widgets/toggle/ionic-toggle.component';
import { IonicTabsComponent } from './widgets/tabs/ionic-tabs.component';
import { IonicSectionComponent } from './widgets/section/ionic-section.component';
import { IonicRootComponent } from './widgets/root/ionic-root.component';
export declare class IonicFramework extends Framework {
name: string;
framework: typeof IonicFrameworkComponent;
stylesheets: any[];
widgets: {
'root': typeof IonicRootComponent;
'section': typeof IonicSectionComponent;
'button': typeof IonicButtonComponent;
'checkbox': typeof IonicCheckboxComponent;
'toggle': typeof IonicToggleComponent;
'select': typeof IonicSelectComponent;
'text': typeof IonicInputComponent;
'number': typeof IonicInputComponent;
'textarea': typeof IonicTextareaComponent;
'tabs': typeof IonicTabsComponent;
'submit': string;
};
}