DIR : /home/kozerus/public_html/cropex/node/node_modules/@hookform/resolvers/typanion/src/types.ts
/home/kozerus/public_html/cropex/node/node_modules/@hookform/resolvers/typanion/src
import type {
FieldValues,
ResolverOptions,
ResolverResult,
} from 'react-hook-form';
import { AnyStrictValidator, ValidationState } from 'typanion';
type ValidateOptions = Pick<ValidationState, 'coercions' | 'coercion'>;
type RHFResolver = <TFieldValues extends FieldValues, TContext>(
values: TFieldValues,
context: TContext | undefined,
options: ResolverOptions<TFieldValues>,
) => ResolverResult<TFieldValues>;
export type Resolver = <UnknownValidator extends AnyStrictValidator>(
validator: UnknownValidator,
validatorOptions?: ValidateOptions,
resolverOptions?: { mode?: 'async' | 'sync'; rawValues?: boolean },
) => RHFResolver;
//
koh5_pano
Drag mouse to navigate.
Navigation
- Left/Right Mouse drag: Changes camera heading.
- Up/Sown Mouse drag: Changes camera pitch.
- Scroll wheel: Changes camera field of view.
- I-Key: Displays Info panel with canvas size, image size and FPS.
17.Aug.2010, Martin Wengenmayer