asajs 4.0.13 → 4.0.14-indev

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.
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export declare function generateUIDefs(pack_folder: string): void;
@@ -0,0 +1 @@
1
+ export declare function rebaseUIFiles(pack_folder: string): void;
@@ -0,0 +1 @@
1
+ export declare function rebaseUIFiles(pack_folder: string): void;
@@ -0,0 +1 @@
1
+ export declare function removeNotUIFiles(pack_folder: string): void;
@@ -0,0 +1,3 @@
1
+ export declare const vanilla_ui_defs: string[];
2
+ export declare function readUIDefs(pack_folder: string): string[];
3
+ export declare function uiFiles(pack_folder: string): Set<string>;
@@ -0,0 +1,16 @@
1
+ interface Element {
2
+ file: string;
3
+ type: string;
4
+ children?: string[];
5
+ extend?: {
6
+ name: string;
7
+ namespace: string;
8
+ };
9
+ }
10
+ interface VanillaDefs {
11
+ [key: string]: {
12
+ [key: string]: Element;
13
+ };
14
+ }
15
+ export declare const vanilladefs: VanillaDefs;
16
+ export {};
@@ -15,8 +15,8 @@ export declare class AnimationKeyframe<T extends AnimType> extends Class {
15
15
  clearNext(): this;
16
16
  protected toJsonUI(): KeyframeAnimationProperties<AnimType>;
17
17
  protected toJSON(): (Partial<import("../types/properties/element/Animation.js").DurationAnimation> & import("../types/properties/element/Animation.js").KeyframeAnimationPropertiesItem) | (Partial<import("../types/properties/element/Animation.js").AsepriteFlipBookAnimation> & import("../types/properties/element/Animation.js").KeyframeAnimationPropertiesItem) | {
18
- from?: import("../types/properties/value.js").Value<number> | undefined;
19
- to?: import("../types/properties/value.js").Value<number> | undefined;
18
+ from?: import("../types/properties/value.js").Array2<string | number> | undefined;
19
+ to?: import("../types/properties/value.js").Array2<string | number> | undefined;
20
20
  duration?: import("../types/properties/value.js").Value<number> | undefined;
21
21
  easing?: import("../types/properties/value.js").Value<string | import("../index.js").Easing> | undefined;
22
22
  next?: import("../types/properties/value.js").Value<string | AnimationKeyframe<AnimType> | Animation<AnimType>>;
@@ -33,8 +33,8 @@ export declare class AnimationKeyframe<T extends AnimType> extends Class {
33
33
  wait_until_rendered_to_play?: import("../types/properties/value.js").Value<boolean>;
34
34
  anim_type: T;
35
35
  } | {
36
- from?: import("../types/properties/value.js").Array2<string | number> | undefined;
37
- to?: import("../types/properties/value.js").Array2<string | number> | undefined;
36
+ from?: import("../types/properties/value.js").Value<number> | undefined;
37
+ to?: import("../types/properties/value.js").Value<number> | undefined;
38
38
  duration?: import("../types/properties/value.js").Value<number> | undefined;
39
39
  easing?: import("../types/properties/value.js").Value<string | import("../index.js").Easing> | undefined;
40
40
  next?: import("../types/properties/value.js").Value<string | AnimationKeyframe<AnimType> | Animation<AnimType>>;
@@ -12,3 +12,4 @@ export { ItemAuxID } from "./types/enums/Items.js";
12
12
  export { ArrayName, Operation } from "./types/properties/index.js";
13
13
  export * from "./compilers/bindings/Binary.js";
14
14
  export { API } from "./components/API.js";
15
+ export * from "./analyzer/generate-ui-defs.js";
@@ -557,6 +557,7 @@ export declare enum ItemAuxID {
557
557
  GOLDEN_BOOTS = 25296896,
558
558
  GOLDEN_CARROT = 20447232,
559
559
  GOLDEN_CHESTPLATE = 25165824,
560
+ GOLDEN_DANDELION = -71499776,
560
561
  GOLDEN_HELMET = 25100288,
561
562
  GOLDEN_HOE = 23920640,
562
563
  GOLDEN_HORSE_ARMOR = 37421056,