class-annotations
Advanced tools
Comparing version 0.1.1 to 0.1.2
{ | ||
"name": "class-annotations", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "A reader annotations from class write with ES6 syntax", | ||
@@ -5,0 +5,0 @@ "main": "class-annotations.js", |
@@ -13,2 +13,4 @@ # [class-annotations]( https://www.npmjs.com/package/class-annotations ) | ||
* @Route( { name: "foo" , path: "/foo" , exactPath: true , methods=['GET'] } ) | ||
* @Another = 35 | ||
* @Another2: "hello" | ||
*/ | ||
@@ -52,2 +54,10 @@ class Foo { | ||
methods: { valueBrut: "['GET']" , value: [ 'GET' ] } | ||
} , | ||
Another: { | ||
valueBrut: "35" , | ||
value: 35 | ||
} , | ||
Another2: { | ||
valueBrut: "hello" , | ||
value: "hello" | ||
} | ||
@@ -54,0 +64,0 @@ } , |
10897
73