A Commit without its signature, but with a signer and timestamp
| 78 | |
| 79 | /** A {@link Commit} without its signature, but with a signer and timestamp */ |
| 80 | interface CommitPreSigned extends CommitBuilderI { |
| 81 | /** https://atomicdata.dev/properties/signer */ |
| 82 | signer: string; |
| 83 | /** Unix timestamp in milliseconds, see https://atomicdata.dev/properties/createdAt */ |
| 84 | createdAt: number; |
| 85 | } |
| 86 | |
| 87 | /** |
| 88 | * A Commit represents a (set of) changes to one specific Resource. See |
nothing calls this directly
no outgoing calls
no test coverage detected