mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +08:00
48 lines
849 B
TypeScript
48 lines
849 B
TypeScript
// what is core parts of Konva?
|
|
import { Konva as Global } from './Global';
|
|
|
|
import { Util, Transform } 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';
|
|
|
|
import { Context } from './Context';
|
|
import { Canvas } from './Canvas';
|
|
|
|
export const Konva = Util._assign(Global, {
|
|
Util,
|
|
Transform,
|
|
Node,
|
|
ids,
|
|
names,
|
|
Container,
|
|
Stage,
|
|
stages,
|
|
Layer,
|
|
FastLayer,
|
|
Group,
|
|
DD,
|
|
Shape,
|
|
shapes,
|
|
Animation,
|
|
Tween,
|
|
Easings,
|
|
Context,
|
|
Canvas,
|
|
});
|
|
|
|
export default Konva;
|