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

fix: make UserConfig interface instead of type #989

Merged
merged 1 commit into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/little-bikes-dance.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@hey-api/openapi-ts': patch
---

fix: make UserConfig interface instead of type
3 changes: 1 addition & 2 deletions packages/openapi-ts/src/types/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,7 @@ export interface ClientConfig {
useOptions?: boolean;
}

// export type UserConfig = ClientConfig | ReadonlyArray<ClientConfig>
export type UserConfig = ClientConfig;
export interface UserConfig extends ClientConfig {}

export type Config = Omit<
Required<ClientConfig>,
Expand Down