turkmentv_front/typings/vote/voteDescription.ts

7 lines
196 B
TypeScript
Raw Permalink Normal View History

2024-08-19 12:44:56 +00:00
import { Dispatch, SetStateAction } from 'react';
export interface IVoteDescription {
voteDescription: string | undefined;
setVoteDescription: Dispatch<SetStateAction<string | undefined>>;
}