Skip to content

Commit be147c6

Browse files
committed
fix(build/widlprocess): .inherit is replaced by .special
1 parent 91408ba commit be147c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/build/widlprocess.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ function convertInterfaceCommon(
175175
member.name
176176
);
177177
} else if (member.type === "attribute") {
178-
if (member.inherit) {
178+
if ((member.special as string) === "inherit") {
179179
continue; // no need to redeclare
180180
}
181181
const { properties } = result;

0 commit comments

Comments
 (0)