Comparing version 1.0.22 to 1.0.23
@@ -33,3 +33,7 @@ /// <reference types="express-serve-static-core" /> | ||
export declare let defaultInfoLogger: (toLog: any) => void; | ||
export interface Renderable { | ||
export declare type JSONSpecBasicType = number | string | boolean; | ||
export declare class JSONSpec { | ||
[key: string]: JSONSpecBasicType | JSONSpecBasicType[] | JSONSpec | JSONSpec[]; | ||
} | ||
export declare class Renderable extends JSONSpec { | ||
$render_view: string; | ||
@@ -36,0 +40,0 @@ } |
@@ -44,2 +44,8 @@ /********************************************************************************* | ||
exports.defaultInfoLogger = (toLog) => { console.log(toLog); }; | ||
class JSONSpec { | ||
} | ||
exports.JSONSpec = JSONSpec; | ||
class Renderable extends JSONSpec { | ||
} | ||
exports.Renderable = Renderable; | ||
function addErrorHandler(eh) { | ||
@@ -46,0 +52,0 @@ exports.errorHandlers.push(eh); |
{ | ||
"name": "kwyjibo", | ||
"version": "1.0.22", | ||
"version": "1.0.23", | ||
"description": "A set of Typescript Decorators and helpers to write better node.js+Express applications.", | ||
@@ -5,0 +5,0 @@ "main": "js/index.js", |
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
108312
1797