diff options
| -rw-r--r-- | README.md | 4 | ||||
| -rw-r--r-- | package.json | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -51,13 +51,13 @@ npm i @askonmm/eventx At the core of your application is state. You start by initiating EventX with some initial state, like so: ```typescript -import eventx from "@askonmm/eventx"; +import EventX from "@askonmm/eventx"; type AppState = { counter: number; }; -const $ = eventx<AppState>({ +const $ = EventX<AppState>({ counter: 1, }); ``` diff --git a/package.json b/package.json index a7216aa..785e2e8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@askonmm/eventx", - "version": "1.0.1", + "version": "1.0.3", "description": "A scalable event-driven application framework.", "main": "dist/eventx.cjs", "module": "dist/eventx.js", |
