File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,6 +4,9 @@ Provides some structure to vanilla typescript applications.
44# Is this a framework?
55Nope, this is just to provide some little level of common sense to the wild west of vanillajs.
66
7+ # Community support
8+ Come and join us in the Vanilla-javascript&typescript [ discord server] ( https://discord.gg/9T8t7Q6 )
9+
710#usage
811
912` npm install --save-dev vanilla-typescript `
Original file line number Diff line number Diff line change 1+ export let KeyCodes = {
2+ RETURN : "13" ,
3+ ESC : "27" ,
4+ SPACE : "32" ,
5+
6+ LEFT : "37" ,
7+ UP : "38" ,
8+ RIGHT : "39" ,
9+ DOWN : "40" ,
10+
11+ ZERO : "48" ,
12+ ONE : "49" ,
13+ TWO : "50" ,
14+
15+ F : "70" ,
16+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11export { IComponent } from "./interfaces/IComponent" ;
2+ export { IAttachableComponent } from "./interfaces/IAttachableComponent" ;
3+ export { KeyCodes } from "./events/KeyCodes.ts" ;
Original file line number Diff line number Diff line change 11{
22 "name" : " vanilla-typescript" ,
3- "version" : " 0.2.2 " ,
3+ "version" : " 0.2.6 " ,
44 "description" : " " ,
55 "main" : " index.ts" ,
66 "scripts" : {
You can’t perform that action at this time.
0 commit comments