UNPKG

strapi-plugin-navigation

Version:
7 lines (6 loc) 269 B
/// <reference types="react" /> export type Effect<T> = (value: T) => void; export type VoidEffect = Effect<void>; export type ToBeFixed = any; export type FormChangeEvent = React.ChangeEvent<any> | string; export type FormItemErrorSchema<T> = Record<keyof T, string>;