We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fec99f5 commit cd90ddaCopy full SHA for cd90dda
src/Transactor.ts
@@ -15,6 +15,8 @@ export interface Commit<Change> {
15
redo: Change[];
16
/** An optional human-readable description of the committed changes */
17
title?: string;
18
+ /** Time of creation (milliseconds from epoch) */
19
+ time: number;
20
}
21
export type TransactedCallback<Change> = (txRecord: Commit<Change>) => void;
22
/**
0 commit comments