UNPKG

@tangle-js/ld-proofs

Version:

Linked Data Proofs on the Tangle. Powered by IOTA Identity & IOTA Streams

9 lines (8 loc) 274 B
import type { IJsonDocument } from "./IJsonDocument"; import type { ILinkedDataSignature } from "./ILinkedDataSignature"; /** * A JSON signed document must include a proof. */ export interface IJsonSignedDocument extends IJsonDocument { proof: ILinkedDataSignature; }