@stryke/types 0.9.1 → 0.9.2
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/base.d.ts +2 -2
- package/package.json +2 -2
package/dist/base.d.ts
CHANGED
|
@@ -238,7 +238,7 @@ export type IsFunction<T> = T extends AnyFunction ? true : false;
|
|
|
238
238
|
*
|
|
239
239
|
* @example
|
|
240
240
|
* ```
|
|
241
|
-
* import type {GlobalThis} from '
|
|
241
|
+
* import type { GlobalThis } from '@stryke/types';
|
|
242
242
|
*
|
|
243
243
|
* type ExtraGlobals = GlobalThis & {
|
|
244
244
|
* readonly GLOBAL_TOKEN: string;
|
|
@@ -309,7 +309,7 @@ type StructuredCloneableCollection = readonly StructuredCloneable[] | {
|
|
|
309
309
|
*
|
|
310
310
|
* @example
|
|
311
311
|
* ```
|
|
312
|
-
* import type {StructuredCloneable} from '
|
|
312
|
+
* import type { StructuredCloneable } from '@stryke/types';
|
|
313
313
|
*
|
|
314
314
|
* class CustomClass {}
|
|
315
315
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stryke/types",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing many base TypeScript type definitions that are shared across many projects.",
|
|
6
6
|
"repository": {
|
|
@@ -292,5 +292,5 @@
|
|
|
292
292
|
"main": "./dist/index.cjs",
|
|
293
293
|
"module": "./dist/index.mjs",
|
|
294
294
|
"types": "./dist/index.d.ts",
|
|
295
|
-
"gitHead": "
|
|
295
|
+
"gitHead": "de2c2a0130fd7d91ac5e94b47ee1addd8dd09a65"
|
|
296
296
|
}
|