@captureid/datatypes 1.0.25 → 1.0.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/enums.d.ts
CHANGED
|
@@ -141,6 +141,14 @@ export declare enum Operators {
|
|
|
141
141
|
AND = 1,
|
|
142
142
|
OR = 2
|
|
143
143
|
}
|
|
144
|
+
export declare enum ImageType {
|
|
145
|
+
UNKNOWN = 0,
|
|
146
|
+
AVATAR = 1,
|
|
147
|
+
ITEM = 2,
|
|
148
|
+
ADVERTISEMENT = 3,
|
|
149
|
+
BUILDING = 4,
|
|
150
|
+
CUSTOM = 5
|
|
151
|
+
}
|
|
144
152
|
export declare enum DatabaseEventType {
|
|
145
153
|
EVENT_UNKNOWN = 0,
|
|
146
154
|
EVENT_ADDED = 1,
|
|
@@ -3,10 +3,10 @@ export interface Image {
|
|
|
3
3
|
width: number;
|
|
4
4
|
height: number;
|
|
5
5
|
url: string;
|
|
6
|
-
blob:
|
|
6
|
+
blob: string;
|
|
7
7
|
}
|
|
8
8
|
export declare class Image implements Image {
|
|
9
|
-
constructor(width: number, height: number, url?: string, blob?:
|
|
9
|
+
constructor(width: number, height: number, url?: string, blob?: string);
|
|
10
10
|
}
|
|
11
11
|
export interface ImageObject {
|
|
12
12
|
data: Image[];
|