Skip to content

Commit dcb6f66

Browse files
authored
Update part9e.md
Use new rule `@typescript-eslint/no-empty-object-type` instead of the deprecated `@typescript-eslint/no-empty-interface`
1 parent 6295ffa commit dcb6f66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/9/en/part9e.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ Before going into this, let us do some preparatory work.
168168
Create an endpoint */api/patients/:id* to the backend that returns all of the patient information for one patient, including the array of patient entries that is still empty for all the patients. For the time being, expand the backend types as follows:
169169

170170
```js
171-
// eslint-disable-next-line @typescript-eslint/no-empty-interface
171+
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
172172
export interface Entry {
173173
}
174174

0 commit comments

Comments
 (0)