@boyangsicwastaken/muchachohitbox 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/index.d.ts +3 -4
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -15,9 +15,9 @@ interface Signal<T extends unknown[]> {
15
15
  Wait(): LuaTuple<T>;
16
16
  }
17
17
 
18
- type DetectionMode = "Default" | "ConstantDetection" | "HitOnce" | "HitParts";
18
+ export type DetectionMode = "Default" | "ConstantDetection" | "HitOnce" | "HitParts";
19
19
 
20
- interface Hitbox {
20
+ export interface Hitbox {
21
21
  Visualizer: boolean;
22
22
  VisualizerColor: Color3;
23
23
  VisualizerTransparency: number;
@@ -44,10 +44,9 @@ interface Hitbox {
44
44
  Destroy(): void;
45
45
  }
46
46
 
47
- interface MuchachoHitbox {
47
+ export interface MuchachoHitbox {
48
48
  CreateHitbox(): Hitbox;
49
49
  FindHitbox(key: string): Hitbox | undefined;
50
50
  }
51
51
 
52
52
  declare const MuchachoHitbox: MuchachoHitbox;
53
- export = MuchachoHitbox;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@boyangsicwastaken/muchachohitbox",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "typescript port for muchachohitbox module",
5
5
  "main": "out/init.luau",
6
6
  "scripts": {