Kevin Jahns bd9c3813fd * starting flow integration
* found a bug in EventHelper
* reduce wait() calls
2015-11-26 00:46:02 +01:00

17 lines
251 B
JavaScript

/* @flow */
type YGlobal = {
utils: Object;
Struct: Object;
AbstractDatabase: any;
}
type YInstance = {
db: Object,
connector: Object,
root: Object
}
declare var YConcurrency_TestingMode : boolean
type Transaction<A> = Generator<any, A, any>