Lint stuff

This commit is contained in:
Gregory Schier
2026-03-08 15:50:13 -07:00
parent 96a22c68f2
commit 6e11894f79
4 changed files with 35 additions and 20 deletions
+5 -1
View File
@@ -1,8 +1,12 @@
import { createModelStore } from "@yaakapp-internal/model-store";
import type { HttpExchange } from "../../crates-proxy/yaak-proxy-lib/bindings/gen_models";
type ProxyModels = {
http_exchange: HttpExchange;
};
export const { dataAtom, applyChange, listAtom, orderedListAtom } =
createModelStore<HttpExchange>();
createModelStore<ProxyModels>(["http_exchange"]);
export const httpExchangesAtom = orderedListAtom(
"http_exchange",