MCPcopy Index your code
hub / github.com/atomicdata-dev/atomic-data-browser / CommitPreSigned

Interface CommitPreSigned

lib/src/commit.ts:80–85  ·  view source on GitHub ↗

A Commit without its signature, but with a signer and timestamp

Source from the content-addressed store, hash-verified

78
79/** A {@link Commit} without its signature, but with a signer and timestamp */
80interface 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected