-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.d.ts
34 lines (30 loc) · 1.44 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Type definitions for [~THE LIBRARY NAME~] [~OPTIONAL VERSION NUMBER~]
// Project: [~THE PROJECT NAME~]
// Definitions by: [~YOUR NAME~] <[~A URL FOR YOU~]>
/*~ This is the module template file. You should rename it to index.d.ts
*~ and place it in a folder with the same name as the module.
*~ For example, if you were writing a file for "super-greeter", this
*~ file should be 'super-greeter/index.d.ts'
*/
/*~ If this module is a UMD module that exposes a global variable 'myLib' when
*~ loaded outside a module loader environment, declare that global here.
*~ Otherwise, delete this declaration.
*/
// export as namespace myLib;
/*~ If this module has methods, declare them as functions like so.
*/
import * as React from "react";
import { ObservableMap } from "mobx";
export { ControlWithContext as Control } from "./lib/ui/Control";
export { ControlArrayWithContext as ControlArray } from "./lib/ui/ControlArray";
export { ControlSectionWithContext as ControlSection } from "./lib/ui/ControlSection";
export {
createForm as reactiveMobxForm,
IReactiveMobxFormProps,
ReactiveMobxForm as ReactiveMobxFormComponent,
configureValidatorjs as configureValidator
} from './lib/createForm'
export { withFormData, WithFormDataType } from './lib/hoc/withFormData';
export { withFormErrors, WithFormErrorsType } from './lib/hoc/withFormErrors';
export { withFormValues, WithFormValuesType } from './lib/hoc/withFormValues';
export { FormStore } from "./lib/Store";