···1import type { BaseClientOptions, ClientRequirements } from "@cistern/shared";
2-import type { ResourceUri, Tid } from "@atcute/lexicons";
34/**
5 * A locally-stored key pair suitable for storage
···3435/** A simplified, encrypted memo */
36export interface DecryptedMemo {
00037 /** TID for when the memo was created */
38 tid: Tid;
39
···1import type { BaseClientOptions, ClientRequirements } from "@cistern/shared";
2+import type { RecordKey, ResourceUri, Tid } from "@atcute/lexicons";
34/**
5 * A locally-stored key pair suitable for storage
···3435/** A simplified, encrypted memo */
36export interface DecryptedMemo {
37+ /** Record key of this memo */
38+ key: RecordKey;
39+40 /** TID for when the memo was created */
41 tid: Tid;
42