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