New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@oliversalzburg/js-utils

Package Overview
Dependencies
Maintainers
1
Versions
922
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@oliversalzburg/js-utils - npm Package Compare versions

Comparing version

to
0.0.23-dev.3

15

core.d.ts
/**
* Describes a function that is a constructor for something.
* @typeParam TConstructed - The type this is a constructor for.
* @group Types
*/

@@ -8,2 +9,3 @@ export type ConstructorOf<TConstructed> = new (...args: Array<any>) => TConstructed;

* Describes any function.
* @group Types
*/

@@ -13,2 +15,3 @@ export type AnyFunction = (...args: Array<any>) => any;

* Describes any asynchronous function.
* @group Types
*/

@@ -18,2 +21,3 @@ export type AnyAsyncFunction = (...args: Array<any>) => Promise<any>;

* Any constructor
* @group Types
*/

@@ -24,2 +28,3 @@ export type AnyConstructor = new (...args: Array<any>) => any;

* @typeParam TReturned - The type of the item returned by the function.
* @group Types
*/

@@ -30,2 +35,3 @@ export type AnyFunctionReturning<TReturned = any> = (...args: Array<any>) => TReturned;

* @typeParam TReturned - The type of the item returned by the function.
* @group Types
*/

@@ -40,3 +46,12 @@ export type AnyAsyncFunctionReturning<TReturned = any> = (...args: Array<any>) => TReturned;

* mixed in with.
* @group Types
*/
export type Mixin<TTarget extends AnyFunctionReturning> = InstanceType<ReturnType<TTarget>>;
/**
* Recursive definition of a regular JS object, which is a key-value hash
* of strings to primitives, or another object of the same type.
* @group Types
*/
export type JsonObject = string | number | boolean | null | Array<JsonObject> | {
[key: string]: JsonObject;
};

2

package.json
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@oliversalzburg/js-utils",
"version": "0.0.23-dev.2",
"version": "0.0.23-dev.3",
"license": "MIT",

@@ -6,0 +6,0 @@ "author": "Oliver Salzburg <oliver.salzburg@gmail.com>",