muryshev's picture
init
79278ec
raw
history blame contribute delete
246 Bytes
interface RequestTextAreaProps {
openAbbreviations: boolean;
content: string;
setContent: React.Dispatch<React.SetStateAction<string>>;
abbreviationArray: string[];
handleEditRequest: () => void;
}
export default RequestTextAreaProps;