@deboxsoft/module-core
Advanced tools
Comparing version
10
index.js
@@ -7,5 +7,9 @@ 'use strict'; | ||
constructor(options = {}) { | ||
super(options.message); | ||
this.code = options.code; | ||
this.notificationType = options.notificationType; | ||
this.instanceOf = options.instanceOf; | ||
} | ||
@@ -629,3 +633,7 @@ } | ||
*/ | ||
function debounce(func, wait = 150, immediate = false) { | ||
function debounce( | ||
func, | ||
wait = 150, | ||
immediate = false | ||
) { | ||
let timeout; | ||
@@ -632,0 +640,0 @@ return function () { |
{ | ||
"name": "@deboxsoft/module-core", | ||
"version": "2.3.0", | ||
"version": "2.3.1", | ||
"license": "SEE LICENSE IN LICENSE", | ||
@@ -59,5 +59,5 @@ "maintainers": [ | ||
"bump": "pnpm run build && bump -c \"release core v\"", | ||
"release": "pnpm run bump -- -t \"core-v\" && pnpm publish", | ||
"release": "pnpm run bump -- -t \"core-v\" && pnpm publish --tag lts/1.3", | ||
"release:dev": "git add . && pnpm run bump -- -p prerelease && pnpm publish --tag dev --no-git-checks" | ||
} | ||
} |
@@ -0,9 +1,15 @@ | ||
declare type NotificationType = "alert" | "warning" | "error" | "info"; | ||
declare type Options = { | ||
message?: string; | ||
code?: string; | ||
args?: Record<string, any>; | ||
notificationType?: NotificationType; | ||
instanceOf?: string; | ||
}; | ||
export declare class DeboxError extends Error { | ||
code?: string; | ||
notificationType?: NotificationType; | ||
instanceOf?: string; | ||
constructor(options?: Options); | ||
} | ||
export {}; |
@@ -12,2 +12,2 @@ /** | ||
*/ | ||
export declare function debounce(func: Function, wait?: number, immediate?: boolean): () => void; | ||
export declare function debounce(func: Function, wait?: number, immediate?: boolean): (...values: any[]) => void; |
Sorry, the diff of this file is not supported yet
73572
0.66%1958
0.93%