Skip to content

Commit

Permalink
Fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
MrZillaGold committed Mar 19, 2021
1 parent 15fbf63 commit 2aa8e39
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rawjsonbuilder",
"version": "1.1.6",
"version": "1.1.7",
"description": "Minecraft Raw JSON text builder",
"main": "./lib/RawJSONBuilder.js",
"types": "./lib/interfaces.d.ts",
Expand Down
5 changes: 2 additions & 3 deletions src/interfaces/hoverEvent.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { RawJSONBuilder } from "../RawJSONBuilder";
import { IText } from "./text";
import { IClickEvent } from "./clickEvent";

export interface IHoverEvent extends IClickEvent {
Expand All @@ -8,8 +7,8 @@ export interface IHoverEvent extends IClickEvent {

export interface IShowTextHoverEvent {
action: "show_text";
value?: IText;
contents?: IText;
value?: RawJSONBuilder;
contents?: RawJSONBuilder;
}

export interface IShowItemHoverEvent {
Expand Down

0 comments on commit 2aa8e39

Please sign in to comment.