@quenty/signal 7.10.2 → 7.10.3

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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [7.10.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/signal@7.10.2...@quenty/signal@7.10.3) (2025-04-10)
7
+
8
+ **Note:** Version bump only for package @quenty/signal
9
+
10
+
11
+
12
+
13
+
6
14
  ## [7.10.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/signal@7.10.0...@quenty/signal@7.10.2) (2025-04-07)
7
15
 
8
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/signal",
3
- "version": "7.10.2",
3
+ "version": "7.10.3",
4
4
  "description": "A simple signal implementation for Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -30,7 +30,7 @@
30
30
  "access": "public"
31
31
  },
32
32
  "dependencies": {
33
- "@quenty/loader": "^10.8.2"
33
+ "@quenty/loader": "^10.8.3"
34
34
  },
35
- "gitHead": "64def70499ec067077ee39f279936b620b217847"
35
+ "gitHead": "b06c070ae91d5dab7bd8de6e290ad2caabb15d8f"
36
36
  }
@@ -61,7 +61,7 @@ export type Connection<T...> = typeof(setmetatable(
61
61
  _signal: Signal<T...>?,
62
62
  _fn: SignalHandler<T...>?,
63
63
  },
64
- Connection
64
+ {} :: typeof({ __index = Connection })
65
65
  ))
66
66
 
67
67
  function Connection.new<T...>(signal: Signal<T...>, fn: SignalHandler<T...>): Connection<T...>
@@ -129,7 +129,7 @@ export type Signal<T...> = typeof(setmetatable(
129
129
  {} :: {
130
130
  _handlerListHead: Connection<T...> | false,
131
131
  },
132
- Signal
132
+ {} :: typeof({ __index = Signal })
133
133
  ))
134
134
 
135
135
  --[=[