@shimotsuki/core 2.0.46 → 2.0.48

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 CHANGED
@@ -1015,16 +1015,25 @@ declare class Manager {
1015
1015
  readonly onAppInitDelegate: AsyncDelegate<() => (Promise<void> | void)>;
1016
1016
  /**插件初始化事务 */
1017
1017
  readonly onPlugInInitDelegate: AsyncDelegate<() => (Promise<void> | void)>;
1018
+ /**音频管理 */
1018
1019
  get audio(): AudioManager;
1020
+ /**全局事件管理 */
1019
1021
  get event(): EventEmitter$1<string | symbol, any>;
1020
1022
  get gui(): Gui;
1023
+ /**本地存储管理 */
1021
1024
  get storage(): StorageManager;
1025
+ /**资源管理 */
1022
1026
  get res(): ResLoader;
1023
1027
  get util(): CoreUtil;
1028
+ /**社交游戏类 */
1024
1029
  get socialGameClient(): SocialGameClientManager;
1030
+ /**数据存储 */
1025
1031
  get store(): CoreStore;
1032
+ /**GUI bundle 名称 */
1026
1033
  get gui_bundle_name(): string;
1034
+ /**音效本地存储key */
1027
1035
  get audio_local_store_key(): string;
1036
+ /**默认音效路径 */
1028
1037
  get default_audio_effect(): string;
1029
1038
  /**GUI资源配置 */
1030
1039
  setConfig: ({ default_audio_effect, gui_bundleName, audio_local_store_key }?: {