require-next-type
Requires a type on the (non-standard) `@next` tag.
See the `jsdoc/require-yields` rule for details on this tag.
|||
|---|---|
|Context|everywhere|
|Tags|`next`|
|Recommended|true|
|Settings||
|Options||
## Failing examples
The following patterns are considered problems:
````ts
/**
* @next
*/
// Message: @next should have a type
````
## Passing examples
The following patterns are not considered problems:
````ts
/**
* @next {SomeType}
*/
````