@orpc/shared 1.7.0 → 1.7.1
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/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -185,7 +185,7 @@ declare function isObject(value: unknown): value is Record<PropertyKey, unknown>
|
|
|
185
185
|
*/
|
|
186
186
|
declare function isTypescriptObject(value: unknown): value is object & Record<PropertyKey, unknown>;
|
|
187
187
|
declare function clone<T>(value: T): T;
|
|
188
|
-
declare function get(object:
|
|
188
|
+
declare function get(object: unknown, path: readonly string[]): unknown;
|
|
189
189
|
declare function isPropertyKey(value: unknown): value is PropertyKey;
|
|
190
190
|
declare const NullProtoObj: ({
|
|
191
191
|
new <T extends Record<PropertyKey, unknown>>(): T;
|
package/dist/index.d.ts
CHANGED
|
@@ -185,7 +185,7 @@ declare function isObject(value: unknown): value is Record<PropertyKey, unknown>
|
|
|
185
185
|
*/
|
|
186
186
|
declare function isTypescriptObject(value: unknown): value is object & Record<PropertyKey, unknown>;
|
|
187
187
|
declare function clone<T>(value: T): T;
|
|
188
|
-
declare function get(object:
|
|
188
|
+
declare function get(object: unknown, path: readonly string[]): unknown;
|
|
189
189
|
declare function isPropertyKey(value: unknown): value is PropertyKey;
|
|
190
190
|
declare const NullProtoObj: ({
|
|
191
191
|
new <T extends Record<PropertyKey, unknown>>(): T;
|