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,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.version = void 0;
4
- exports.version = '0.0.0-main.20230625T042628';
4
+ exports.version = '0.0.0-main.20230625T204058';
5
5
  //# sourceMappingURL=version.js.map
@@ -1,2 +1,2 @@
1
- export const version = '0.0.0-main.20230625T042628';
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.20230625T042628";
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 } | { b: string } | { c: number, d: bigint }>
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
@@ -15,7 +15,7 @@
15
15
  "peerDependencies": {
16
16
  "typescript": ">=5.0.4"
17
17
  },
18
- "version": "0.0.0-main.20230625T042628",
18
+ "version": "0.0.0-main.20230625T204058",
19
19
  "files": [
20
20
  "dist",
21
21
  "!dist/**/*.tsbuildinfo",
@@ -1 +1 @@
1
- export const version = '0.0.0-main.20230625T042628'
1
+ export const version = '0.0.0-main.20230625T204058'
@@ -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 } | { b: string } | { c: number, d: bigint }>
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> = {