feat: add returnTypeVarName and returnBaseTypeVarName to TagOperation interface and update generator function

This commit is contained in:
didavila
2026-03-24 15:37:26 +01:00
parent fc3d95052c
commit f4d9340137
2 changed files with 4 additions and 0 deletions

View File

@@ -78,6 +78,8 @@ export interface TagOperation {
bodyParam: string;
returnType: string | boolean;
returnBaseType: string | boolean;
returnTypeVarName: string | boolean;
returnBaseTypeVarName: string | boolean;
isListContainer: boolean;
vendorExtensions: Record<string, unknown>;
}