Skip to content
Compare
Choose a tag to compare
@github-actions github-actions released this 02 Feb 10:37
· 168 commits to main since this release
d0af19e

Minor Changes

  • #1661 bb6d46a Thanks @mrlubos! - fix: make createConfig, CreateClientConfig, and Config accept ClientOptions generic

    Added ClientOptions interface

    The Config interface now accepts an optional generic extending ClientOptions instead of boolean type ThrowOnError.

    type Foo = Config<false>; // [!code --]
    type Foo = Config<{ throwOnError: false }>; // [!code ++]