turkmentv_front/typings/state.ts

4 lines
107 B
TypeScript
Raw Permalink Normal View History

2024-08-19 12:44:56 +00:00
import { Dispatch, SetStateAction } from 'react';
export type ISetState<K> = Dispatch<SetStateAction<K>>;