@brandup/ui 1.0.31 → 1.0.32
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/dist/types.d.ts +4 -2
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -80,7 +80,9 @@ declare const constants: UiConstants;
|
|
|
80
80
|
|
|
81
81
|
type constants$1_UiConstants = UiConstants;
|
|
82
82
|
declare namespace constants$1 {
|
|
83
|
-
export {
|
|
83
|
+
export { constants as default };
|
|
84
|
+
export type { constants$1_UiConstants as UiConstants };
|
|
84
85
|
}
|
|
85
86
|
|
|
86
|
-
export {
|
|
87
|
+
export { EventEmitter, constants$1 as UICONSTANTS, UIElement };
|
|
88
|
+
export type { CommandCanExecuteFunction, CommandContext, CommandEventArgs, CommandExecStatus, CommandExecuteFunction, CommandResult, EventCallbackFunc, EventContextInit, EventName };
|