From 2c4f26d72679082b178fb3e0d825817c21829f09 Mon Sep 17 00:00:00 2001 From: diegosouzapw Date: Wed, 27 May 2026 19:05:26 -0300 Subject: [PATCH] chore(db): re-export playgroundPresets from localDb Adds one re-export block at the end of localDb.ts per Hard Rule #2 (re-export only, zero logic, zero function/const/class additions). --- src/lib/localDb.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/lib/localDb.ts b/src/lib/localDb.ts index 648c03f658..dbc070fcdd 100755 --- a/src/lib/localDb.ts +++ b/src/lib/localDb.ts @@ -508,3 +508,13 @@ export { } from "./db/freeProxies"; export type { FreeProxyRecord, FreeProxyStats } from "./db/freeProxies"; + +export { + listPlaygroundPresets, + getPlaygroundPreset, + createPlaygroundPreset, + updatePlaygroundPreset, + deletePlaygroundPreset, +} from "./db/playgroundPresets"; + +export type { PlaygroundPresetListItem } from "./db/playgroundPresets";