import { Owner } from './Owner.js'; import { Tag } from './Tag.js'; type Transaction = { id: string; /** The transaction owner (aka the entity that signed this transaction). */ owner: Owner; data: string; tags: Tag[]; signature: string; anchor: null | string; target: string; }; export { Transaction };