2024-03-20 16:34:04 +00:00
|
|
|
import { type NostrEvent } from '@/deps.ts';
|
2024-01-23 17:17:31 +00:00
|
|
|
|
2024-04-09 18:08:07 +00:00
|
|
|
import { type DittoEvent } from '@/interfaces/DittoEvent.ts';
|
2024-01-23 17:17:31 +00:00
|
|
|
|
|
|
|
/** Additional properties that may be added by Ditto to events. */
|
|
|
|
export type DittoRelation = Exclude<keyof DittoEvent, keyof NostrEvent>;
|