-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
25 lines (22 loc) · 1012 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { Shape } from './src/shape';
import { GfxCmd } from './src/gfxcmd';
import { GraphicsEx } from './src/graphicsex';
import { BeginFill } from './src/commands/beginfill';
import { CurveTo } from './src/commands/curveto';
import { DrawEllipse } from './src/commands/drawellipse';
import { LineStyle } from './src/commands/linestyle';
import { LineTo } from './src/commands/lineto';
import { MoveTo } from './src/commands/moveto';
import { Ellipse } from './src/shapes/ellipse';
import { Line } from './src/shapes/line';
import { NGon } from './src/shapes/ngon';
import { Polygon } from './src/shapes/polygon';
import { Rectangle } from './src/shapes/rectangle';
import { RoundRectangle } from './src/shapes/roundrectangle';
import { SplineC } from './src/shapes/splinec';
import { SplineQ } from './src/shapes/splineq';
export {
Shape, GfxCmd, GraphicsEx,
BeginFill, CurveTo, DrawEllipse, LineStyle, LineTo, MoveTo,
Ellipse, Line, NGon, Polygon, Rectangle, RoundRectangle, SplineC, SplineQ
};