ReturnType that will be used when calling the client.
Type: | 'data' | 'full' |
---|---|
Required: | false |
Default: | 'data' |
'data'
will return ResponseConfig[data].'full'
will return ResponseConfig.
typescript
export async function getPetById<TData>(
petId: GetPetByIdPathParams,
): Promise<ResponseConfig<TData>["data"]> {
...
}
typescript
export async function getPetById<TData>(
petId: GetPetByIdPathParams,
): Promise<ResponseConfig<TData>> {
...
}