turkmentv_front/typings/state.ts

4 lines
107 B
TypeScript

import { Dispatch, SetStateAction } from 'react';
export type ISetState<K> = Dispatch<SetStateAction<K>>;