Skip to content

Commit 2ebe18d

Browse files
committed
Fix TS error
1 parent 23e8614 commit 2ebe18d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/models/documentation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export class Documentation implements SerializableNode {
44
constructor(
55
public description: string | undefined,
66
public defaultValue: unknown | undefined = undefined,
7-
public visibility: 'public' | 'private' | 'internal' | undefined,
7+
public visibility: 'public' | 'private' | 'internal' | undefined = undefined,
88
public tags: DocumentationTag[] = [],
99
) {}
1010

0 commit comments

Comments
 (0)