6 lines
346 B
TypeScript
6 lines
346 B
TypeScript
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<BlockedSitesRepo>;
|
|
export const TODOS_REPO_KEY = 'todos-repo' as ProxyServiceKey<TodosRepo>;
|