Merge branch 'refactor-resolve-import' into 'main'

refactor(interfaces): resolve import specifier via the active import map

See merge request soapbox-pub/ditto!149
This commit is contained in:
Alex Gleason 2024-04-09 18:16:10 +00:00
commit e1e07de435
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
import { type NostrEvent } from '@/deps.ts'; import { type NostrEvent } from '@/deps.ts';
import { type DittoEvent } from './DittoEvent.ts'; import { type DittoEvent } from '@/interfaces/DittoEvent.ts';
/** Additional properties that may be added by Ditto to events. */ /** Additional properties that may be added by Ditto to events. */
export type DittoRelation = Exclude<keyof DittoEvent, keyof NostrEvent>; export type DittoRelation = Exclude<keyof DittoEvent, keyof NostrEvent>;