Skip to content

@reactive-dot/[email protected]

Compare
Choose a tag to compare
@github-actions github-actions released this 20 Oct 10:40
· 80 commits to main since this release
0a1db00

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;
      }
    }