1
0
mirror of https://github.com/konvajs/konva.git synced 2025-04-24 19:03:56 +08:00
konva/src/_CoreInternals.ts

42 lines
735 B
TypeScript
Raw Normal View History

2019-03-07 11:19:32 +08:00
// what is core parts of Konva?
import { Konva as Global } from './Global';
import { Collection, Util } from './Util';
import { Node, ids, names } from './Node';
import { Container } from './Container';
import { Stage, stages } from './Stage';
import { Layer } from './Layer';
import { FastLayer } from './FastLayer';
import { Group } from './Group';
import { DD } from './DragAndDrop';
import { Shape, shapes } from './Shape';
import { Animation } from './Animation';
import { Tween, Easings } from './Tween';
export const Konva = Object.assign(Global, {
Collection,
Util,
Node,
ids,
names,
Container,
Stage,
stages,
Layer,
FastLayer,
Group,
DD,
Shape,
shapes,
Animation,
Tween,
Easings
});