generic-type-guard
Advanced tools
Comparing version 3.7.1 to 3.7.2
@@ -274,3 +274,3 @@ /** | ||
*/ | ||
export declare const isInstance: <T extends object>(klass: new (...args: never[]) => T) => TypeGuard<T>; | ||
export declare const isInstance: <T extends object>(klass: abstract new (...args: never[]) => T) => TypeGuard<T>; | ||
@@ -277,0 +277,0 @@ /** |
@@ -106,3 +106,3 @@ ## API Report File for "generic-type-guard" | ||
// @public | ||
export const isInstance: <T extends object>(klass: new (...args: never[]) => T) => TypeGuard<T>; | ||
export const isInstance: <T extends object>(klass: abstract new (...args: never[]) => T) => TypeGuard<T>; | ||
@@ -109,0 +109,0 @@ // @public |
{ | ||
"name": "generic-type-guard", | ||
"version": "3.7.1", | ||
"version": "3.7.2", | ||
"description": "Generic type guards for TypeScript", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -106,3 +106,3 @@ ## API Report File for "generic-type-guard" | ||
// @public | ||
export const isInstance: <T extends object>(klass: new (...args: never[]) => T) => TypeGuard<T>; | ||
export const isInstance: <T extends object>(klass: abstract new (...args: never[]) => T) => TypeGuard<T>; | ||
@@ -109,0 +109,0 @@ // @public |
Sorry, the diff of this file is not supported yet
145110