github-actions
released this
20 Oct 10:40
·
80 commits
to main
since this release
Minor Changes
-
#270
08e5517
Thanks @tien! - BREAKING: simplified chain type registration.Old approach:
import type { config } from "./config.js"; import type { InferChains } from "@reactive-dot/core"; declare module "@reactive-dot/core" { export interface Chains extends InferChains<typeof config> {} }
New approach:
import type { config } from "./config.js"; declare module "@reactive-dot/core" { export interface Register { config: typeof config; } }