There was an error while loading. Please reload this page.
1 parent 746c7a3 commit 4be11f2Copy full SHA for 4be11f2
1 file changed
_docs.ts
@@ -104,7 +104,7 @@ export async function getDocs(version?: string) {
104
const callableProperties = Client?.classDef.properties
105
.filter((v) => v.tsType?.kind == "typeLiteral" && v.tsType.typeLiteral.callSignatures.length > 0)
106
.map((v): ClassMethodDef => {
107
- const callSignature = v.tsType!.kind == "typeLiteral" ? v.tsType.typeLiteral.callSignatures[0] : undefined!;
+ const callSignature = v.tsType!.kind == "typeLiteral" ? v.tsType!.typeLiteral.callSignatures[0] : undefined!;
108
const tags = v.jsDoc?.tags ?? [];
109
return {
110
jsDoc: {
0 commit comments