File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
packages/testcafe-models/dataGrid Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -8,22 +8,22 @@ const CLASS = {
88 regenerateButton : 'dx-ai-prompt-editor__refresh-button' ,
99 stopButton : 'dx-ai-prompt-editor__stop-button' ,
1010 applyButton : 'dx-ai-prompt-editor__apply-button' ,
11- }
11+ } ;
1212
1313export class AIPromptEditor extends Popup {
1414 getTextArea ( ) : TextArea {
1515 return new TextArea ( this . getWrapper ( ) . find ( `.${ CLASS . textArea } ` ) ) ;
1616 }
1717
18- getRegenerateButton ( ) {
18+ getRegenerateButton ( ) : Button {
1919 return new Button ( this . getWrapper ( ) . find ( `.${ CLASS . button } .${ CLASS . regenerateButton } ` ) ) ;
2020 }
2121
22- getStopButton ( ) {
22+ getStopButton ( ) : Button {
2323 return new Button ( this . getWrapper ( ) . find ( `.${ CLASS . button } .${ CLASS . stopButton } ` ) ) ;
2424 }
2525
26- getApplyButton ( ) {
26+ getApplyButton ( ) : Button {
2727 return new Button ( this . getWrapper ( ) . find ( `.${ CLASS . button } .${ CLASS . applyButton } ` ) ) ;
2828 }
2929}
You can’t perform that action at this time.
0 commit comments