Skip to content

Commit 092c23a

Browse files
committed
Add missing export for TS types.
1 parent 8d64d4c commit 092c23a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

codegen/src/codegen.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ using namespace jsonrpccxx;\n`;
388388
} else {
389389
if (struct.extends) {
390390
const baseClasses = struct.extends.join(', ');
391-
content += `type ${name} = ${baseClasses};\n`;
391+
content += `export type ${name} = ${baseClasses};\n`;
392392
}
393393
}
394394
}

0 commit comments

Comments
 (0)