canvas-editor-engine 1.0.53 → 1.0.55
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/dist/components/crop.component.d.ts +0 -0
- package/dist/components/crop.component.js +0 -0
- package/dist/components/crop.service.d.ts +0 -0
- package/dist/components/crop.service.js +0 -0
- package/dist/images/image.png +0 -0
- package/dist/images/sample.png +0 -0
- package/dist/types/excreation.d.ts +0 -24
- package/dist/types/excreation.js +0 -5
package/package.json
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
package/dist/images/image.png
DELETED
Binary file
|
package/dist/images/sample.png
DELETED
Binary file
|
@@ -1,24 +0,0 @@
|
|
1
|
-
export interface IExcretionsCoords {
|
2
|
-
start?: {
|
3
|
-
x: number;
|
4
|
-
y: number;
|
5
|
-
};
|
6
|
-
end?: {
|
7
|
-
x: number;
|
8
|
-
y: number;
|
9
|
-
};
|
10
|
-
}
|
11
|
-
export interface IExcretionTempStart {
|
12
|
-
start: {
|
13
|
-
x: number;
|
14
|
-
y: number;
|
15
|
-
};
|
16
|
-
}
|
17
|
-
export interface IExcretionTempEnd {
|
18
|
-
end: {
|
19
|
-
x: number;
|
20
|
-
y: number;
|
21
|
-
};
|
22
|
-
}
|
23
|
-
export type TExcretionTempCoords = (IExcretionTempStart | IExcretionTempEnd)[];
|
24
|
-
export type TExcretionState = 'create' | 'add' | 'remove' | 'end' | 'abandoned';
|