import { DidDocument } from '@atproto/identity' export interface DidCache { did: string doc: DidDocument updatedAt: number } export const tableName = 'did_cache' export type PartialDB = { [tableName]: DidCache }