chore: Beta 7

This commit is contained in:
J H
2024-02-02 08:42:57 -07:00
parent 7f3c189ec1
commit dae4748659
2 changed files with 3 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ import { Utils } from "../util/utils"
export type SetupExports<Store> = (opts: {
effects: Effects
utils: Utils<Store>
utils: Utils<any, Store>
}) =>
| {
ui: ExposeUiPaths<Store>

View File

@@ -114,8 +114,8 @@ export type ValidIfNoStupidEscape<A> = A extends
| `${string}\\"${string}`
? never
: "" extends A & ""
? never
: A
? never
: A
export type ConfigRes = {
/** This should be the previous config, that way during set config we start with the previous */