@genexus/genexus-ide-ui 0.0.34 → 0.0.36
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.
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import { EventEmitter } from "../../stencil-public-runtime";
|
|
2
2
|
import { GxOption } from "../../common/types";
|
|
3
3
|
import { EntityData } from "../entity-selector/entity-selector";
|
|
4
|
+
declare const FILTER_AFTER_NONE = "none";
|
|
5
|
+
declare const FILTER_AFTER_DATE_TIME = "afterDateTime";
|
|
6
|
+
declare const FILTER_AFTER_LAST_BUILD = "afterLastBuild";
|
|
7
|
+
declare const FILTER_AFTER_IMPORT = "afterImport";
|
|
4
8
|
export declare class GxIdeObjectSelector {
|
|
5
9
|
/**
|
|
6
10
|
* The component hard-coded strings translations.
|
|
@@ -132,3 +136,5 @@ export interface ObjectData {
|
|
|
132
136
|
importDate?: Date;
|
|
133
137
|
lastBuildDate: Date;
|
|
134
138
|
}
|
|
139
|
+
export type ObjectSelectorFilterAfter = typeof FILTER_AFTER_NONE | typeof FILTER_AFTER_DATE_TIME | typeof FILTER_AFTER_LAST_BUILD | typeof FILTER_AFTER_IMPORT;
|
|
140
|
+
export {};
|