semantic-ui-react-router
Version:
Semantic UI React components for React Router and several other extension
21 lines (20 loc) • 744 B
TypeScript
import * as FormStateImport from './form-state';
import * as MobxFromImport from './mobx-form';
import * as ReduxFromImport from './redux-form';
import * as ReactRouterImport from './react-router';
export declare const Form: typeof FormStateImport;
export declare const MobxForm: typeof MobxFromImport;
export declare const ReduxForm: typeof ReduxFromImport;
export declare const ReactRouter: typeof ReactRouterImport;
export declare function bind(owner: any, name: string, validator?: any): {
owner: any;
name: string;
value: any;
validator: any;
};
export declare function bindProperty(property: string, owner: any, name: string, validator?: any): {
owner: any;
name: string;
validator: any;
value: string;
};