(returnType: TsTypeDef)
| 65 | } |
| 66 | |
| 67 | function isVoid(returnType: TsTypeDef) { |
| 68 | return returnType.kind === "keyword" && returnType.keyword === "void"; |
| 69 | } |
| 70 | |
| 71 | function assertHasReturnTag(document: { jsDoc: JsDoc; location: Location }) { |
| 72 | const tag = document.jsDoc.tags?.find((tag) => tag.kind === "return"); |
no outgoing calls
no test coverage detected