@buenos-nachos/time-sync 0.5.0 → 0.5.1
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/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/src/TimeSync.ts +3 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/src/TimeSync.ts
CHANGED
|
@@ -113,7 +113,9 @@ export interface SubscriptionInitOptions {
|
|
|
113
113
|
*/
|
|
114
114
|
export interface Snapshot {
|
|
115
115
|
/**
|
|
116
|
-
* The date that
|
|
116
|
+
* The date that TimeSync last processed. This will always match the date that
|
|
117
|
+
* was last dispatched to all subscribers, but if no updates have been issued,
|
|
118
|
+
* this value will match the date used to instantiate the TimeSync.
|
|
117
119
|
*/
|
|
118
120
|
readonly date: ReadonlyDate;
|
|
119
121
|
|