import type { ProxyServiceKey } from "@webext-core/proxy-service"; import type { BlockedSitesRepo } from "./blocked-site-repo"; import type { TodosRepo } from "./todo-repo"; export const BLOCKED_SITES_REPO_KEY = 'blocked-sites-repo' as ProxyServiceKey; export const TODOS_REPO_KEY = 'todos-repo' as ProxyServiceKey;