Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@alwatr/signal

Package Overview
Dependencies
Maintainers
1
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@alwatr/signal - npm Package Compare versions

Comparing version 0.21.0 to 0.22.0

4

CHANGELOG.md

@@ -6,2 +6,6 @@ # Change Log

# [0.22.0](https://github.com/AliMD/alwatr/compare/v0.21.0...v0.22.0) (2022-11-20)
**Note:** Version bump only for package @alwatr/signal
# [0.21.0](https://github.com/AliMD/alwatr/compare/v0.20.0...v0.21.0) (2022-11-13)

@@ -8,0 +12,0 @@

6

package.json
{
"name": "@alwatr/signal",
"version": "0.21.0",
"version": "0.22.0",
"description": "Elegant powerful event system for handle global signals and states written in tiny TypeScript module.",

@@ -35,6 +35,6 @@ "keywords": [

"dependencies": {
"@alwatr/logger": "^0.21.0",
"@alwatr/logger": "^0.22.0",
"tslib": "^2.4.1"
},
"gitHead": "b4a565ee520e5a9fab404f539463109b6af19aa9"
"gitHead": "2c45f39d4f1d684c9580ed28501b31b7c170ebd4"
}

@@ -76,7 +76,7 @@ declare global {

*/
export declare type ListenerCallback<SignalName extends keyof AlwatrSignals> = (signalValue: AlwatrSignals[SignalName]) => void | Promise<void>;
export type ListenerCallback<SignalName extends keyof AlwatrSignals> = (signalValue: AlwatrSignals[SignalName]) => void | Promise<void>;
/**
* Signal provider function type used to setSignalProvider.
*/
export declare type SignalProvider<SignalName extends keyof AlwatrRequestSignals> = (requestParam: AlwatrRequestSignals[SignalName]) => AlwatrSignals[SignalName] | void | Promise<AlwatrSignals[SignalName] | void>;
export type SignalProvider<SignalName extends keyof AlwatrRequestSignals> = (requestParam: AlwatrRequestSignals[SignalName]) => AlwatrSignals[SignalName] | void | Promise<AlwatrSignals[SignalName] | void>;
/**

@@ -129,5 +129,5 @@ * Signal listeners object in database.

*/
export declare type SignalStack = {
export type SignalStack = {
[SignalName in keyof AlwatrSignals]?: SignalObject<SignalName>;
};
//# sourceMappingURL=type.d.ts.map

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc