import { Map, List, OrderedMap } from 'immutable'; import { ValidatorErrorsType } from '@ui-schema/ui-schema/ValidatorErrors'; import { JsonSchema } from '@ui-schema/ui-schema/JsonSchema'; export type showValidity = boolean; export type Errors = ValidatorErrorsType; export type required = boolean; export type valid = boolean; export type StoreSchemaTypeValuesJS = string | number | boolean | null | any[] | undefined | { [key: string]: StoreSchemaTypeValuesJS; }; export type StoreSchemaTypeValues = StoreSchemaType | List | Map | StoreSchemaTypeValuesJS; export type StoreSchemaType = OrderedMap; export type SchemaTypesType = List | string | undefined;