##// END OF EJS Templates
Added 'Attrs', 'Events' type parameters to DjxWidgetBase, typed 'on' and 'emit' methods
Added 'Attrs', 'Events' type parameters to DjxWidgetBase, typed 'on' and 'emit' methods

File last commit:

r28:b88fac0e76c0 v1.0.0-rc13 default
r30:a46488b209e8 v1.0.0-rc14 default
Show More
dummy.ts
17 lines | 432 B | video/mp2t | TypeScriptLexer
cin
typescript strict mode...
r1 import { test } from "./TestTraits";
import { delay } from "@implab/core-amd/safe";
import { assert } from "chai";
cin
fixed strict mode @bind decorator
r28 import css = require("@implab/djx/css!my.css");
cin
Initial commit, copied files related to .tsx scripts support.
r0
cin
typescript strict mode...
r1 test("simple", (ok, fail, log) => {
cin
Initial commit, copied files related to .tsx scripts support.
r0 setTimeout(() => {
// end should be called after the last assertion
cin
typescript strict mode...
r1 ok("async assert");
cin
Initial commit, copied files related to .tsx scripts support.
r0 }, 100);
});
cin
typescript strict mode...
r1
cin
Working on dojo typings
r15 test("simple", async (log, fail) => {
cin
typescript strict mode...
r1 await delay(0);
assert.ok(true); // everything is fine
});