@malib/gear 0.1.0 → 0.2.0

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.
@@ -1,7 +1,7 @@
1
1
  import { Gear } from "../gear";
2
2
  import { GearPropType } from "../gearproptype";
3
3
  import { BonusStatType } from "./bonusstattype";
4
- export declare type BonusStatGrade = 1 | 2 | 3 | 4 | 5 | 6 | 7;
4
+ export type BonusStatGrade = 1 | 2 | 3 | 4 | 5 | 6 | 7;
5
5
  /**
6
6
  * 추가옵션 관련 기능을 제공합니다.
7
7
  *
@@ -1,7 +1,7 @@
1
1
  import { Gear } from "../gear";
2
2
  import { GearPropType } from "../gearproptype";
3
- export declare type SpellTraceProbability = 100 | 70 | 30 | 15;
4
- export declare type SpellTraceStatType = GearPropType.incSTR | GearPropType.incDEX | GearPropType.incINT | GearPropType.incLUK | GearPropType.incAllStat | GearPropType.incMHP;
3
+ export type SpellTraceProbability = 100 | 70 | 30 | 15;
4
+ export type SpellTraceStatType = GearPropType.incSTR | GearPropType.incDEX | GearPropType.incINT | GearPropType.incLUK | GearPropType.incAllStat | GearPropType.incMHP;
5
5
  /**
6
6
  * 주문서
7
7
  */
package/package.json CHANGED
@@ -1,5 +1,9 @@
1
1
  {
2
2
  "name": "@malib/gear",
3
- "version": "0.1.0",
4
- "type": "module"
3
+ "version": "0.2.0",
4
+ "type": "module",
5
+ "main": "index.js",
6
+ "module": "index.js",
7
+ "types": "index.d.ts",
8
+ "typings": "index.d.ts"
5
9
  }