Skip to content

Commit b9786fc

Browse files
committed
feat(client-documentation-generator): change command io to interface from type
1 parent 7371971 commit b9786fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/client-documentation-generator/src/sdk-client-toc-plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export class SdkClientTocPlugin extends RendererComponent {
8686

8787
private isInputOrOutput(model: DeclarationReflection): boolean {
8888
return (
89-
model.kindOf(ReflectionKind.TypeAlias) &&
89+
model.kindOf(ReflectionKind.Interface) &&
9090
(model.name.endsWith("CommandInput") || model.name.endsWith("CommandOutput"))
9191
);
9292
}

0 commit comments

Comments
 (0)