Skip to content

Commit d7e96fb

Browse files
committed
-
1 parent e3f0a20 commit d7e96fb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
File renamed without changes.

src/build/patches.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,10 +139,10 @@ function handleProperty(child: Node): Partial<Property> {
139139
function handleMethod(child: Node): Partial<Method> {
140140
const name = child.values[0] as string;
141141
// Build the overrideSignatures array with the method signature string
142-
const overrideSignatures = [
142+
const signature = [
143143
`${name}(${child.children.map((c) => `${c.values[0]}: ${c.properties.type}`).join(", ")}): ${child.properties.returns || "void"}`,
144144
];
145-
return { name, overrideSignatures };
145+
return { name, signature };
146146
}
147147

148148
/**

0 commit comments

Comments
 (0)