Skip to content

Commit b07e74d

Browse files
committed
update docusaurus
1 parent bda4813 commit b07e74d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

website/src/pages/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -444,9 +444,9 @@ TypeScript provides two options for defining types: `type` and `interface`. Whil
444444
>{`'@typescript-eslint/consistent-type-definitions': ['error', 'type']`}</Rule>
445445

446446
<Note>
447-
Consider using interfaces when developing a package that may be extended in the future by third-party consumers or
448-
when the team prefers working with interfaces. In such cases, you can disable linting rules where necessary, such as
449-
when using type unions (e.g. `type Status = 'loading' | 'error'`).
447+
Consider using interfaces when developing a package that might be extended by third-party consumers in the future or
448+
when your team prefers working with interfaces. In these cases, you can disable linting rules if needed, such as when
449+
defining type unions (e.g. `type Status = 'loading' | 'error'`).
450450
</Note>
451451

452452
```ts

0 commit comments

Comments
 (0)