bun-types 1.1.17 → 1.1.18-canary.20240630T140538
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/bun.d.ts +1 -1
- package/package.json +1 -1
package/bun.d.ts
CHANGED
|
@@ -3086,7 +3086,7 @@ declare module "bun" {
|
|
|
3086
3086
|
* Returns 0 if the versions are equal, 1 if `v1` is greater, or -1 if `v2` is greater.
|
|
3087
3087
|
* Throws an error if either version is invalid.
|
|
3088
3088
|
*/
|
|
3089
|
-
order(v1: StringLike, v2: StringLike): -1 | 0 | 1;
|
|
3089
|
+
order(this: void, v1: StringLike, v2: StringLike): -1 | 0 | 1;
|
|
3090
3090
|
}
|
|
3091
3091
|
var semver: Semver;
|
|
3092
3092
|
|
package/package.json
CHANGED