We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32c8aeb commit 8ee8d6aCopy full SHA for 8ee8d6a
types/api-helpers.d.ts
@@ -3,8 +3,10 @@ declare type ValueOf<
3
ValueType extends keyof ObjectType = keyof ObjectType
4
> = ObjectType[ValueType]
5
6
-// Copied and adapted from "openapi-typescript-fetch"
7
-
+// Based on openapi-typescript-fetch.
+// https://socket.dev/npm/package/openapi-typescript-fetch/overview/2.2.1
8
+// MIT License
9
+// Copyright 2021 Ajai Shankar
10
declare type Coalesce<T, D> = [T] extends [never] ? D : T
11
12
declare type OpResponseTypes<OP> = OP extends {
0 commit comments