jsegd-fluig-types 1.0.8 → 1.0.10
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 +7 -7
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -157,13 +157,7 @@ declare type ConfirmCallback = (
|
|
|
157
157
|
) => void;
|
|
158
158
|
declare type MessageCallback = (element: HTMLElement, event: Event) => void;
|
|
159
159
|
|
|
160
|
-
|
|
161
|
-
MUST = 1,
|
|
162
|
-
SHOULD = 2,
|
|
163
|
-
MUST_NOT = 3,
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
export enum Status {
|
|
160
|
+
declare enum Status {
|
|
167
161
|
SUCCESS = "success",
|
|
168
162
|
ERROR = "error",
|
|
169
163
|
WARNING = "warning",
|
|
@@ -400,6 +394,12 @@ declare global {
|
|
|
400
394
|
static error(message: string): void;
|
|
401
395
|
}
|
|
402
396
|
|
|
397
|
+
enum ConstraintType {
|
|
398
|
+
MUST = 1,
|
|
399
|
+
SHOULD = 2,
|
|
400
|
+
MUST_NOT = 3,
|
|
401
|
+
}
|
|
402
|
+
|
|
403
403
|
class DatasetFactory {
|
|
404
404
|
static getAvailableDatasets(): string[];
|
|
405
405
|
static createConstraint(
|