File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments