export declare const tableName = "actor_sync"; export interface ActorSync { did: string; commit_cid: string; repo_rev: string; } export type PartialDB = { [tableName]: ActorSync; };