jsegd-fluig-types 1.0.7 → 1.0.8
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/package.json +1 -1
- package/types.d.ts +2 -2
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -157,13 +157,13 @@ declare type ConfirmCallback = (
|
|
|
157
157
|
) => void;
|
|
158
158
|
declare type MessageCallback = (element: HTMLElement, event: Event) => void;
|
|
159
159
|
|
|
160
|
-
|
|
160
|
+
export enum ConstraintType {
|
|
161
161
|
MUST = 1,
|
|
162
162
|
SHOULD = 2,
|
|
163
163
|
MUST_NOT = 3,
|
|
164
164
|
}
|
|
165
165
|
|
|
166
|
-
|
|
166
|
+
export enum Status {
|
|
167
167
|
SUCCESS = "success",
|
|
168
168
|
ERROR = "error",
|
|
169
169
|
WARNING = "warning",
|