mirror of
https://github.com/aljazceru/ditto.git
synced 2025-12-26 17:54:28 +01:00
7 lines
249 B
TypeScript
7 lines
249 B
TypeScript
import { type NostrEvent } from '@/deps.ts';
|
|
|
|
import { type DittoEvent } from '@/interfaces/DittoEvent.ts';
|
|
|
|
/** Additional properties that may be added by Ditto to events. */
|
|
export type DittoRelation = Exclude<keyof DittoEvent, keyof NostrEvent>;
|