##// END OF EJS Templates
`dojo.store.api` replaced `dojo.promise.Promise<T>` with `PromiseLike<T>` type
`dojo.store.api` replaced `dojo.promise.Promise<T>` with `PromiseLike<T>` type

File last commit:

r0:ab570232df7d default
r12:1e87acba35f3 v1.0.3 default
Show More
arc.d.ts
32 lines | 546 B | video/mp2t | TypeScriptLexer
declare namespace dojox {
namespace gfx {
namespace arc {
interface Arc {
c1: Point;
c2: Point;
e: Point;
s: Point;
}
}
}
}
declare module 'dojox/gfx/arc' {
type Arc = dojox.gfx.arc.Arc;
/* tslint:disable:no-unused-variable */
const curvePI4: Arc;
const arcAsBezier: (
last: dojox.gfx.Point,
rx: number,
ry: number,
xRotG: number,
large: boolean,
sweep: boolean,
x: number,
y: number
) => dojox.gfx.QuadraticBezierCurve;
const unitArcAsBezier: (radians: number) => Arc;
/* tslint:enable */
}