Skip to content

Commit 6b11f65

Browse files
Update src/NodeParser/FunctionNodeParser.ts
Co-authored-by: Dominik Moritz <[email protected]>
1 parent d6ed5a7 commit 6b11f65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/NodeParser/FunctionNodeParser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export class FunctionNodeParser implements SubNodeParser {
1818
public supportsNode(node: ts.TypeNode): boolean {
1919
return (
2020
node.kind === ts.SyntaxKind.FunctionType ||
21-
//@ts-expect-error internals type bug
21+
// @ts-expect-error internals type bug
2222
node.kind === ts.SyntaxKind.FunctionExpression ||
2323
//@ts-expect-error internals type bug
2424
node.kind === ts.SyntaxKind.ArrowFunction ||

0 commit comments

Comments
 (0)