Last active
May 2, 2019 06:25
-
-
Save ktutnik/855c8db06034f91672d9698ffce39b71 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| kind: "Class", | |
| name: "MyAwesomeClass", | |
| ... | |
| methods: [{ | |
| kind: "Method", | |
| name: "myAwesomeMethod", | |
| returnType: Number, | |
| decorators: [{ | |
| type: "Cache", | |
| cache: '60s' | |
| }] | |
| ... | |
| parameters: [{ | |
| kind: "Parameter", | |
| name: "stringPar", | |
| type: String, | |
| ... | |
| }] | |
| }] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment