@shimotsuki/core 1.0.2 → 1.0.4
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/index.d.ts +7 -1
- package/dist/index.js +2571 -1
- package/package.json +45 -47
- package/temp/declarations/cc.custom-macro.d.ts +0 -3
- package/temp/declarations/cc.d.ts +0 -8
- package/temp/declarations/cc.env.d.ts +0 -180
- package/temp/declarations/jsb.d.ts +0 -1
- package/tsconfig.json +0 -24
package/dist/index.d.ts
CHANGED
|
@@ -960,6 +960,12 @@ declare class CoreUIContainer extends UILayer {
|
|
|
960
960
|
setSceneMaskActive(active: boolean): void;
|
|
961
961
|
}
|
|
962
962
|
|
|
963
|
+
/**
|
|
964
|
+
* @describe 层级界面管理
|
|
965
|
+
* @author 游金宇(KM)
|
|
966
|
+
* @date 2023-08-03 20:02:45
|
|
967
|
+
*/
|
|
968
|
+
|
|
963
969
|
type UIComponentType<T> = T extends UILayer<infer U> ? U : void;
|
|
964
970
|
type SceneComponentType<T> = T extends SceneLayer<infer U> ? U : void;
|
|
965
971
|
/**预制体路径 */
|
|
@@ -1012,4 +1018,4 @@ declare class Manager {
|
|
|
1012
1018
|
}
|
|
1013
1019
|
declare const cat: Manager;
|
|
1014
1020
|
|
|
1015
|
-
export { AudioEventConstant, AudioSourceBaseComponent, AudioTypeEnum, BaseComponent, BaseManager, BasePrefab, CoreBlackMask, CoreNotice, type CoreNoticeProps, CoreReconnection, CoreShowLoading, type CoreShowLoadingProps, CoreToast, CoreUIContainer, CoreUIModal, type CoreUIModalProps, CoreUtil, GlobalEventConstant, Gui, GuiManager, type HOOK, type ICloseOptions, type IDirection, type IOpenOptions, type IUIOption, LayerType, Manager, ReconnectPrompt, type SceneComponentType, type SceneDataType, type ScenePropsType, type ToastProps, ToastType, type UIComponentType, WrapperSocialGameClient, cat };
|
|
1021
|
+
export { AudioEventConstant, AudioSourceBaseComponent, AudioTypeEnum, BaseComponent, BaseManager, BasePrefab, CoreBlackMask, CoreNotice, type CoreNoticeProps, CoreReconnection, CoreShowLoading, type CoreShowLoadingProps, CoreToast, CoreUIContainer, CoreUIModal, type CoreUIModalProps, CoreUtil, GlobalEventConstant, Gui, GuiManager, type HOOK, type ICloseOptions, type IDirection, type IOpenOptions, type IUIOption, LayerType, Manager, ReconnectPrompt, type SceneComponentType, type SceneDataType, SceneLayer, type ScenePropsType, type ToastProps, ToastType, type UIComponentType, UILayer, WrapperSocialGameClient, cat };
|