From 11f668dc8cf61903c5a12583bc81ea5da7b33512 Mon Sep 17 00:00:00 2001 From: "P. Reis" Date: Tue, 9 Apr 2024 15:08:07 -0300 Subject: [PATCH] refactor(interfaces): resolve import specifier via the active import map --- src/interfaces/DittoFilter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interfaces/DittoFilter.ts b/src/interfaces/DittoFilter.ts index 60467632..dfdc098f 100644 --- a/src/interfaces/DittoFilter.ts +++ b/src/interfaces/DittoFilter.ts @@ -1,6 +1,6 @@ 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. */ export type DittoRelation = Exclude;