viem 0.0.0-main.20230625T042628 → 0.0.0-main.20230625T204058
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.
@@ -1,2 +1,2 @@
|
|
1
|
-
export const version = '0.0.0-main.
|
1
|
+
export const version = '0.0.0-main.20230625T204058';
|
2
2
|
//# sourceMappingURL=version.js.map
|
@@ -1,2 +1,2 @@
|
|
1
|
-
export declare const version = "0.0.0-main.
|
1
|
+
export declare const version = "0.0.0-main.20230625T204058";
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
@@ -133,9 +133,9 @@ export type PartialBy<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;
|
|
133
133
|
/**
|
134
134
|
* @description Combines members of an intersection into a readable type.
|
135
135
|
*
|
136
|
-
* @link https://twitter.com/mattpocockuk/status/1622730173446557697?s=20&t=NdpAcmEFXY01xkqU3KO0Mg
|
136
|
+
* @see {@link https://twitter.com/mattpocockuk/status/1622730173446557697?s=20&t=NdpAcmEFXY01xkqU3KO0Mg}
|
137
137
|
* @example
|
138
|
-
* Prettify<{ a: string }
|
138
|
+
* Prettify<{ a: string } & { b: string } & { c: number, d: bigint }>
|
139
139
|
* => { a: string, b: string, c: number, d: bigint }
|
140
140
|
*/
|
141
141
|
export type Prettify<T> = {
|
package/package.json
CHANGED
package/src/errors/version.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export const version = '0.0.0-main.
|
1
|
+
export const version = '0.0.0-main.20230625T204058'
|
package/src/types/utils.ts
CHANGED
@@ -176,9 +176,9 @@ export type PartialBy<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>
|
|
176
176
|
/**
|
177
177
|
* @description Combines members of an intersection into a readable type.
|
178
178
|
*
|
179
|
-
* @link https://twitter.com/mattpocockuk/status/1622730173446557697?s=20&t=NdpAcmEFXY01xkqU3KO0Mg
|
179
|
+
* @see {@link https://twitter.com/mattpocockuk/status/1622730173446557697?s=20&t=NdpAcmEFXY01xkqU3KO0Mg}
|
180
180
|
* @example
|
181
|
-
* Prettify<{ a: string }
|
181
|
+
* Prettify<{ a: string } & { b: string } & { c: number, d: bigint }>
|
182
182
|
* => { a: string, b: string, c: number, d: bigint }
|
183
183
|
*/
|
184
184
|
export type Prettify<T> = {
|