Skip to content

Commit

Permalink
🤖 dprint fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
typescript-bot committed Feb 25, 2025
1 parent 7aa6673 commit 3f809e8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
5 changes: 2 additions & 3 deletions types/gorilla-engine/components/MappingEditor.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
declare namespace GorillaEngine.UI {

interface Zone {
index: number;
rootKey: number;
Expand All @@ -13,8 +12,8 @@ declare namespace GorillaEngine.UI {
parentPath: string;
zones?: Zone[];
refreshView(index?: number): void;
addZone(zone: Partial<Zone> ): Zone;
removeZone(zone: Partial<Zone> ): void;
addZone(zone: Partial<Zone>): Zone;
removeZone(zone: Partial<Zone>): void;
}

// tslint:disable-next-line:no-empty-interface
Expand Down
3 changes: 1 addition & 2 deletions types/gorilla-engine/gorilla-engine-tests.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

const mylabel = new GorillaEngine.UI.Label({ text: "rr" });

const combo = new GorillaEngine.UI.ComboBox({ id: "myCombo", x: 0 });
Expand All @@ -15,4 +14,4 @@ const label = new GorillaEngine.UI.Label({ margin: 5 });

const slider = new GorillaEngine.UI.Slider({ id: "slider", x: 0 });

const mappingEditor = new GorillaEngine.UI.MappingEditor({ id: 'myMapping'})
const mappingEditor = new GorillaEngine.UI.MappingEditor({ id: "myMapping" });
4 changes: 2 additions & 2 deletions types/gorilla-engine/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -596,6 +596,6 @@ declare namespace GorillaEngine {
* @param x the x position to place the settings button
* @param y the y position to place the settings button
*/
function setSettingsButtonPosition(x: number, y: number): void;
function setSettingsButtonPosition(x: number, y: number): void;
}
}
}

0 comments on commit 3f809e8

Please sign in to comment.