##// END OF EJS Templates
added type parameter to Evented<T>, T is the event map...
added type parameter to Evented<T>, T is the event map _WidgetBase emit() and on() are now more strict, they accept only valid event names, or explicit `any` added _setValueAttr method to _FormMixin

File last commit:

r2:1e22cac2aaf4 v1.0.0-rc1 default
r10:641c326d4bb4 v1.0.2 default
Show More
StoreTests.ts
26 lines | 531 B | video/mp2t | TypeScriptLexer
import * as Memory from "dojo/store/Memory";
import * as Observable from "dojo/store/Observable";
interface Schedule {
id?: string;
title: string;
duration: number;
}
declare const store: dojo.store.api.Store<Schedule>;
const observable = new Observable(store);
const mem = new Memory<Schedule>();
observable.query().observe(() => { });
store.query().forEach(() => { });
const total = await store.query().total;
const result = await store.query();
mem.query();
mem.add({ duration: 10, title: "Test event" });