forked from boardx/x-canvas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fabric.ts
58 lines (47 loc) · 2.28 KB
/
fabric.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
export { getEnv, getDocument, getWindow, setEnv } from './src/env';
export { cache } from './src/cache';
export { VERSION as version, iMatrix } from './src/constants';
export { config } from './src/config';
export { classRegistry } from './src/ClassRegistry';
export { runningAnimations } from './src/util/animation/AnimationRegistry';
export { Observable } from './src/Observable';
export { StaticCanvas } from './src/canvas/StaticCanvas';
export { Canvas } from './src/canvas/Canvas';
export { Point } from './src/Point';
export { Intersection } from './src/Intersection';
export { Color } from './src/color/Color';
export { Gradient } from './src/gradient/Gradient';
export { Pattern } from './src/Pattern';
export { Shadow } from './src/Shadow';
export { BaseBrush } from './src/brushes/BaseBrush';
export { PencilBrush } from './src/brushes/PencilBrush';
export { CircleBrush } from './src/brushes/CircleBrush';
export { SprayBrush } from './src/brushes/SprayBrush';
export { PatternBrush } from './src/brushes/PatternBrush';
export { ActiveSelection } from './src/shapes/ActiveSelection';
export { Arrow } from './src/shapes/Arrow';
export { createCollectionMixin } from './src/Collection';
export { Circle } from './src/shapes/Circle';
export { CircleNotes } from './src/shapes/CircleNotes';
export { Ellipse } from './src/shapes/Ellipse';
export { FabricObject as Object } from './src/shapes/Object/FabricObject';
export { WBFile } from './src/shapes/File';
export { Group } from './src/shapes/Group';
export { Image } from './src/shapes/Image';
export { IText } from './src/shapes/IText/IText';
export { Line } from './src/shapes/Line';
export { Path } from './src/shapes/Path';
export { Polyline } from './src/shapes/Polyline';
export { Polygon } from './src/shapes/Polygon';
export { Rect } from './src/shapes/Rect';
export { RectNotes } from './src/shapes/RectNotes';
export { ShapeNotes } from './src/shapes/ShapeNotes';
export { Text } from './src/shapes/Text/Text';
export { Textbox } from './src/shapes/Textbox';
export { Triangle } from './src/shapes/Triangle';
export { UrlImage } from './src/shapes/Urlimage';
export * as util from './src/util';
export * from './src/parser';
export { Control } from './src/controls/Control';
export * as controlsUtils from './src/controls';
export * from './src/filters';