🐛 (crdt) export Clock as a type to fix warning (#1434)

This commit is contained in:
Matiss Janis Aboltins
2023-07-31 17:58:57 +01:00
committed by GitHub
parent 81446fb4ef
commit 5f76067190
4 changed files with 9 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@actual-app/crdt",
"version": "2.0.1",
"version": "2.0.2",
"license": "MIT",
"description": "CRDT layer of Actual",
"main": "dist/index.js",

View File

@@ -8,6 +8,6 @@ export {
makeClientId,
serializeClock,
deserializeClock,
Clock,
type Clock,
Timestamp,
} from './timestamp';

View File

@@ -7,7 +7,7 @@ export {
makeClientId,
serializeClock,
deserializeClock,
Clock,
type Clock,
Timestamp,
} from './crdt';

View File

@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [MatissJanis]
---
`crdt`: export `Clock` as a type - fix a console warning