db/events: fix import order

This commit is contained in:
Alex Gleason 2023-08-12 20:04:19 -05:00
parent 9da4fb2bba
commit 007f464d31
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 1 additions and 2 deletions

View File

@ -1,8 +1,7 @@
import { db, type TagRow } from '@/db.ts';
import { type Filter, type Insertable } from '@/deps.ts';
import { type SignedEvent } from '@/event.ts';
import { db, type TagRow } from '@/db.ts';
type TagCondition = ({ event, count }: { event: SignedEvent; count: number }) => boolean;
/** Conditions for when to index certain tags. */