turkmentv_front/typings/vote/voteDescription.ts

7 lines
196 B
TypeScript

import { Dispatch, SetStateAction } from 'react';
export interface IVoteDescription {
voteDescription: string | undefined;
setVoteDescription: Dispatch<SetStateAction<string | undefined>>;
}