@veloxts/client 0.6.104 → 0.6.105
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/types.d.ts +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/types.d.ts
CHANGED
|
@@ -148,6 +148,8 @@ export type ClientFromTRPCNamespace<TNamespace> = {
|
|
|
148
148
|
};
|
|
149
149
|
/**
|
|
150
150
|
* Checks if a type looks like a tRPC procedure
|
|
151
|
+
*
|
|
152
|
+
* @undocumented
|
|
151
153
|
*/
|
|
152
154
|
export type IsTRPCProcedure<T> = T extends {
|
|
153
155
|
_def: {
|
|
@@ -159,6 +161,8 @@ export type IsTRPCProcedure<T> = T extends {
|
|
|
159
161
|
} ? true : false;
|
|
160
162
|
/**
|
|
161
163
|
* Checks if a type looks like a tRPC namespace (object containing tRPC procedures)
|
|
164
|
+
*
|
|
165
|
+
* @undocumented
|
|
162
166
|
*/
|
|
163
167
|
export type IsTRPCNamespace<T> = T extends Record<string, {
|
|
164
168
|
_def: {
|