Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[typescript] Incorrect extends null<...> declaration for map/dictionary-like schema definitions with additionalProperties #1297

Open
softworkz opened this issue Jun 6, 2024 · 1 comment

Comments

@softworkz
Copy link

OpenApi Schema

    "MyDictionary": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }

Generated TypeScript

/**
 * 
 * @export
 * @interface ProviderIdDictionary
 */
export interface ProviderIdDictionary extends null<String, string> {
    [key: string]: string;
}
@softworkz
Copy link
Author

softworkz commented Jun 6, 2024

Related: #691

@micryc @frantuma - The related issue is 4 years old. Is there any chance to get this fixed?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant