diff options
Diffstat (limited to 'FrontEnd/src/components/input/index.ts')
-rw-r--r-- | FrontEnd/src/components/input/index.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/FrontEnd/src/components/input/index.ts b/FrontEnd/src/components/input/index.ts new file mode 100644 index 00000000..ca183089 --- /dev/null +++ b/FrontEnd/src/components/input/index.ts @@ -0,0 +1,11 @@ +export { useInputs, InputGroup } from "./InputGroup"; + +export type { + InputValueDict, + InputErrorDict, + InputDirtyDict, + InputDisabledDict, + InputConfirmValueDict, + Validator, + Initializer, +} from "./InputGroup"; |