@litert/core
Advanced tools
Comparing version 0.3.2 to 0.3.3
# Changes Logs | ||
## v0.3.3 | ||
- Added the signature for class/method annotation functions. | ||
## v0.3.2 | ||
@@ -4,0 +8,0 @@ |
@@ -7,3 +7,5 @@ /** | ||
} | ||
export declare type ClassDecorator = (target: Function) => void; | ||
export declare type MethodDecorator = (target: Object, property: string | symbol) => void; | ||
export * from "./class.Exception"; | ||
export * from "./class.RawPromise"; |
{ | ||
"name": "@litert/core", | ||
"version": "0.3.2", | ||
"version": "0.3.3", | ||
"description": "The core of LiteRT.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -24,4 +24,10 @@ /* | ||
export type ClassDecorator = (target: Function) => void; | ||
export type MethodDecorator = ( | ||
target: Object, property: string | symbol | ||
) => void; | ||
export * from "./class.Exception"; | ||
export * from "./class.RawPromise"; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
26472
335