mirror of
https://github.com/aljazceru/ditto.git
synced 2025-12-27 10:14:39 +01:00
6 lines
247 B
TypeScript
6 lines
247 B
TypeScript
import { NostrEvent } from '@nostrify/nostrify';
|
|
import { DittoEvent } from '@/interfaces/DittoEvent.ts';
|
|
|
|
/** Additional properties that may be added by Ditto to events. */
|
|
export type DittoRelation = Exclude<keyof DittoEvent, keyof NostrEvent>;
|