get rid of PubkeyDomainRow interface

This commit is contained in:
Siddharth Singh 2024-05-04 11:57:20 +05:30
parent e037ccc7ed
commit 3893cc68ca
No known key found for this signature in database

View file

@ -5,7 +5,6 @@ export interface DittoTables {
unattached_media: UnattachedMediaRow;
author_stats: AuthorStatsRow;
event_stats: EventStatsRow;
pubkey_domains: PubkeyDomainRow;
}
interface AuthorStatsRow {
@ -51,9 +50,3 @@ interface UnattachedMediaRow {
data: string;
uploaded_at: number;
}
interface PubkeyDomainRow {
pubkey: string;
domain: string;
last_updated_at: number;
}