@stryke/type-checks 0.3.5 → 0.3.7
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/is-typed.d.ts +2 -2
- package/package.json +4 -3
package/dist/is-typed.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { Typed } from "@stryke/types/base";
|
|
2
2
|
/**
|
|
3
3
|
* Check if the provided value has a `__typename` property
|
|
4
4
|
*
|
|
5
5
|
* @param value - The value to type check
|
|
6
6
|
* @returns An indicator specifying if the value provided has a `__typename` property
|
|
7
7
|
*/
|
|
8
|
-
export declare const isTyped: (value: unknown) => value is
|
|
8
|
+
export declare const isTyped: (value: unknown) => value is Typed;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stryke/type-checks",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing various type-check functions to validate TypeScript values.",
|
|
6
6
|
"repository": {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
"private": false,
|
|
12
12
|
"publishConfig": { "access": "public" },
|
|
13
|
-
"dependencies": { "@stryke/types": "^0.8.
|
|
13
|
+
"dependencies": { "@stryke/types": "^0.8.6" },
|
|
14
14
|
"devDependencies": {},
|
|
15
15
|
"sideEffects": false,
|
|
16
16
|
"files": ["dist/**/*"],
|
|
@@ -663,5 +663,6 @@
|
|
|
663
663
|
},
|
|
664
664
|
"main": "./dist/index.cjs",
|
|
665
665
|
"module": "./dist/index.mjs",
|
|
666
|
-
"types": "./dist/index.d.ts"
|
|
666
|
+
"types": "./dist/index.d.ts",
|
|
667
|
+
"gitHead": "57da58e3434302b35f798674d9f18f92ca7f7ac9"
|
|
667
668
|
}
|