Skip to content
Compare
Choose a tag to compare
@github-actions github-actions released this 06 Mar 04:29
· 341 commits to main since this release
e796d91

Minor Changes

Patch Changes

  • #80 c377528 Thanks @jxom! - Type Change: The state generic in the Frog constructor type is now named.

    type State = { count: number }
    
    - const frog = new Frog<State>({
    + const frog = new Frog<{ State: State }>({
      initialState: { count: 0 }
    })
  • #80 c377528 Thanks @jxom! - Added a var property to context to extract variables that were previously set via set in Middleware. Read more.