Skip to content

Commit

Permalink
Last fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
DaanV2 committed Mar 28, 2024
1 parent 16f7860 commit 9c13783
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions src/types/document-location.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { JsonPath } from "./JsonPath";
import { OffsetWord } from './OffsetWord';
import { Position } from "./Position";
import { Range } from "./Range";
import { JsonPath } from "./json-path";
import { OffsetWord } from './offset-word';
import { Position } from "./position";
import { Range } from "./range";

/**The type of a document location */
export type DocumentLocation = Position | OffsetWord | JsonPath | number;
Expand Down
2 changes: 1 addition & 1 deletion src/types/locatable.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Location } from "./Location";
import { Location } from "./location";

/**An object that carries a location*/
export interface Locatable {
Expand Down
2 changes: 1 addition & 1 deletion src/types/range.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Position } from "./Position";
import { Position } from "./position";

/** */
export interface Range {
Expand Down
2 changes: 1 addition & 1 deletion test/minecraft/block.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { expect } from "chai";
import { BlockState, Block } from "../../src/minecraft/block";
import { Location } from "../../src/types/Location";
import { Location } from "../../src/types/location";

const blockDescription: string = "minecraft:log[direction=west,stripped=true,half=top]";
const blockID = "minecraft:log";
Expand Down

0 comments on commit 9c13783

Please sign in to comment.