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
| font_family|Amadeo_W01_Bold_SC | |
| ascent|532 | |
| descent|-468 | |
| units-per-em|1000 | |
| horiz-adv-x|410 | |
| !|172 | |
| #|557 | |
| $|459 | |
| %|542 | |
| &|281 |
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
| font_family|Century_Gothic_W15 | |
| ascent|781 | |
| descent|-220 | |
| units-per-em|1000 | |
| horiz-adv-x|563 | |
| |0 | |
| |277 | |
| !|295 | |
| "|309 | |
| #|720 |
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
| -1|04|64|84|Ko|Kò|Kó|Kô|Kõ|Kö|LS|LŠ|kg|vs|vš | |
| -10|BÆ|CÆ|tS|tŠ|ÇÆ | |
| -11|y:|ý:|ÿ: | |
| -12|A,|ff|rr|ta|tà|tá|tâ|tã|tä|tå|tæ|À,|Á,|Â,|Ã,|Ä,|Å, | |
| -13|ft|rn|rñ | |
| -14|Aa|Aà|Aá|Aâ|Aã|Aä|Aå|r-|r;|ri|rj|rx|Àa|Àà|Àá|Àâ|Àã|Àä|Àå|Áa|Áà|Áá|Áâ|Áã|Áä|Áå|Âa|Âà|Âá|Ââ|Âã|Âä|Âå|Ãa|Ãà|Ãá|Ãâ|Ãã|Ãä|Ãå|Äa|Äà|Äá|Äâ|Äã|Ää|Äå|Åa|Åà|Åá|Åâ|Åã|Åä|Åå | |
| -15|A.|À.|Á.|Â.|Ã.|Ä.|Å. | |
| -16|rp | |
| -17|rf|ru|rù|rú|rû|rü | |
| -18|v; |
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
| enum foo { | |
| A, | |
| B, | |
| C, | |
| D | |
| } |
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
| /build/app/app.ts(145,35): error TS1015: Parameter cannot have question mark and initializer. | |
| /build/app/app.ts(801,34): error TS1015: Parameter cannot have question mark and initializer. | |
| /build/app/managers/FontManager.ts(114,48): error TS1015: Parameter cannot have question mark and initializer. | |
| /build/app/managers/FontManager.ts(175,53): error TS1015: Parameter cannot have question mark and initializer. | |
| /build/app/managers/ServiceManager.ts(670,10): error TS1008: Unexpected token; 'constructor, function, accessor or variable' expected. | |
| /build/app/managers/ErrorManager.ts(66,37): error TS1015: Parameter cannot have question mark and initializer. | |
| /build/app/managers/ErrorManager.ts(70,39): error TS1015: Parameter cannot have question mark and initializer. | |
| /build/app/managers/ErrorManager.ts(74,36): error TS1015: Parameter cannot have question mark and initializer. | |
| /build/app/managers/ErrorManager.ts(78,37): error TS1015: Parameter cannot have question mark and initializer. | |
| /build/app/managers/ImageManager.ts |
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
| app/interfaces/IApplicationMode.ts(6,15): error TS2095: Could not find symbol 'bool'. | |
| app/interfaces/IWindow.ts(4,19): error TS2095: Could not find symbol 'bool'. | |
| app/interfaces/IGuidedTip.ts(3,22): error TS2095: Could not find symbol 'bool'. | |
| app/interfaces/IGuidedTip.ts(5,28): error TS2095: Could not find symbol 'bool'. | |
| app/app.ts(39,27): error TS2095: Could not find symbol 'bool'. | |
| app/app.ts(40,25): error TS2095: Could not find symbol 'bool'. | |
| app/app.ts(41,32): error TS2095: Could not find symbol 'bool'. | |
| app/app.ts(42,34): error TS2095: Could not find symbol 'bool'. | |
| app/app.ts(44,35): error TS2095: Could not find symbol 'bool'. | |
| app/app.ts(46,23): error TS2095: Could not find symbol 'bool'. |
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
| declare var Vue: VueStatic; | |
| interface VueObject{ | |
| } | |
| interface VueMethods{ | |
| [n: string]: Function; | |
| } | |
| interface VueAttributes{ |
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
| class MyView extends TSVue { | |
| map:{ | |
| data:['a'] | |
| methods:['plus'], | |
| computed:['aplus'] | |
| } | |
| plus(){ | |
| this.a++; |
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
| export class Storage{ | |
| static STORAGE_KEY:string = 'todos-vuejs'; | |
| static todos:any = null; | |
| static fetch(){ | |
| if( !Storage.todos ){ | |
| Storage.todos = JSON.parse( localStorage.getItem( Storage.STORAGE_KEY ) || '[]' ); | |
| } | |
| return Storage.todos; | |
| } |
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
| /// <reference path='../../../tools/vue/vue.0.10.0RC.d.ts'/> | |
| var Router:any; | |
| module app{ | |
| export module sorting{ | |
| export var ALL = 'all'; | |
| export var ACTIVE = 'active'; | |
| export var COMPLETED = 'completed'; |
OlderNewer