Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

5 righe
327 B

  1. import { MergeStateSetter } from './useMergeState';
  2. declare type Mapper<TProps, TState> = (props: TProps, state: TState) => null | Partial<TState>;
  3. export default function useMergeStateFromProps<TProps, TState>(props: TProps, gDSFP: Mapper<TProps, TState>, initialState: TState): [TState, MergeStateSetter<TState>];
  4. export {};