Skip to content

Commit 6571659

Browse files
fix: mark instance properties as optional correctly
1 parent 1447081 commit 6571659

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/module-declaration.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,8 @@ export const generateModuleDeclaration = (
272272
module.instanceProperties
273273
.sort((a, b) => a.name.localeCompare(b.name))
274274
.forEach(prop => {
275-
moduleAPI.push(`${prop.name}: ${utils.typify(prop)};`);
275+
const isOptional = !prop.required ? '?' : '';
276+
moduleAPI.push(`${prop.name}${isOptional}: ${utils.typify(prop)};`);
276277
});
277278
}
278279

0 commit comments

Comments
 (0)