mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +08:00
9 lines
272 B
TypeScript
9 lines
272 B
TypeScript
var Konva = require('./_FullInternals');
|
|
// add Konva to global variable
|
|
// umd build will actually do it
|
|
// but it may now it case of modules and bundlers
|
|
Konva._injectGlobal(Konva);
|
|
exports['default'] = Konva;
|
|
Konva.default = Konva;
|
|
module.exports = exports['default'];
|