Skip to content

Commit b317191

Browse files
committed
Fix comments
1 parent 102726e commit b317191

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/testcafe-models/dataGrid/aiPromptEditor.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

1313
export 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
}

0 commit comments

Comments
 (0)