Spaces:
Running
Running
| interface RequestTextAreaProps { | |
| openAbbreviations: boolean; | |
| content: string; | |
| setContent: React.Dispatch<React.SetStateAction<string>>; | |
| abbreviationArray: string[]; | |
| handleEditRequest: () => void; | |
| } | |
| export default RequestTextAreaProps; | |