@synnaxlabs/x 0.15.1 → 0.15.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/.turbo/turbo-build.log +5 -5
- package/dist/telem/telem.d.ts +1 -6
- package/dist/x.cjs +2 -2
- package/dist/x.cjs.map +1 -1
- package/dist/x.js +21 -21
- package/dist/x.js.map +1 -1
- package/package.json +3 -3
- package/src/telem/telem.spec.ts +9 -0
- package/src/telem/telem.ts +12 -3
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @synnaxlabs/x@0.15.
|
|
2
|
+
> @synnaxlabs/x@0.15.2 build /home/runner/work/synnax/synnax/x/ts
|
|
3
3
|
> tsc --noEmit && vite build
|
|
4
4
|
|
|
5
5
|
[36mvite v5.1.2 [32mbuilding for production...[36m[39m
|
|
@@ -10,8 +10,8 @@ rendering chunks...
|
|
|
10
10
|
[32m
|
|
11
11
|
[36m[vite:dts][32m Start generate declaration files...[39m
|
|
12
12
|
computing gzip size...
|
|
13
|
-
[2mdist/[22m[36mx.js [39m[1m[2m179.
|
|
14
|
-
[32m[36m[vite:dts][32m Declaration files built in
|
|
13
|
+
[2mdist/[22m[36mx.js [39m[1m[2m179.71 kB[22m[1m[22m[2m │ gzip: 39.89 kB[22m[2m │ map: 522.48 kB[22m
|
|
14
|
+
[32m[36m[vite:dts][32m Declaration files built in 3195ms.
|
|
15
15
|
[39m
|
|
16
|
-
[2mdist/[22m[36mx.cjs [39m[1m[
|
|
17
|
-
[32m✓ built in 4.
|
|
16
|
+
[2mdist/[22m[36mx.cjs [39m[1m[2m119.01 kB[22m[1m[22m[2m │ gzip: 31.61 kB[22m[2m │ map: 504.10 kB[22m
|
|
17
|
+
[32m✓ built in 4.01s[39m
|
package/dist/telem/telem.d.ts
CHANGED
|
@@ -452,12 +452,7 @@ export declare class TimeRange implements Stringer {
|
|
|
452
452
|
* In most cases, operations should treat end as exclusive.
|
|
453
453
|
*/
|
|
454
454
|
end: TimeStamp;
|
|
455
|
-
|
|
456
|
-
* Creates a TimeRange from the given start and end TimeStamps.
|
|
457
|
-
*
|
|
458
|
-
* @param start - A TimeStamp representing the start of the range.
|
|
459
|
-
* @param end - A TimeStamp representing the end of the range.
|
|
460
|
-
*/
|
|
455
|
+
constructor(tr: CrudeTimeRange);
|
|
461
456
|
constructor(start: CrudeTimeStamp, end: CrudeTimeStamp);
|
|
462
457
|
/** @returns The TimeSpan occupied by the TimeRange. */
|
|
463
458
|
get span(): TimeSpan;
|