DefinitelyTyped/types/jcanvas/jcanvas-tests.ts
Leonard Thieu 1c3565933c :(
2017-06-13 13:00:42 -04:00

23 lines
339 B
TypeScript

import jcanvas = require("jcanvas");
jcanvas($, window);
const elt = $(".foo");
elt.clearCanvas();
elt.drawSlice({
fillStyle: "blue",
x: 100, y: 100,
radius: 80,
start: 0, end: 359.9
});
elt.drawText({
fillStyle: "white",
strokeStyle: "red",
strokeWidth: 2,
x: 100, y: 100,
fontSize: 48,
fontFamily: "Arial",
text: "bar"
});