UNPKG

@tangle-js/ld-proofs

Version:

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

9 lines (8 loc) 278 B
import type { IIotaLinkedDataProof } from "./IIotaLinkedDataProof"; import type { IJsonDocument } from "./IJsonDocument"; /** * A JSON anchored document must include a proof. */ export interface IJsonAnchoredDocument extends IJsonDocument { proof: IIotaLinkedDataProof; }