@solidrt/flux-types 0.0.5 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.d.ts +1 -0
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -32,6 +32,7 @@ declare global {
32
32
 
33
33
  let Flux: {
34
34
  on(event: string, callback: (data: any) => void): () => void
35
+ once(event: string, callback: (data: any) => void): () => void
35
36
  dir(path: string): FluxDir
36
37
  file(path: string): FluxFile
37
38
  write(path: string, data: string | Uint8Array): Promise<void>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solidrt/flux-types",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "license": "MIT",
5
5
  "author": "Antoine van Wel",
6
6
  "types": "index.d.ts",