New BCL approach & BuildTasks

This commit is contained in:
atanasovg
2014-03-12 18:26:58 +02:00
commit 39b505384a
42 changed files with 2907 additions and 0 deletions

9
declarations.d.ts vendored Normal file
View File

@@ -0,0 +1,9 @@
// Global functions
declare function Log(data: any): void;
declare function log(data: any): void;
declare function float(num: number): any;
declare function long(num: number): any;
declare function fail(data: any): void;
// TODO: Declaration for the missing asynchronous API
declare function runAsync(operation: () => any, onComplete?: () => any);