Skip to content

Commit 6811a6e

Browse files
🤖 dprint fmt
1 parent 4f8782f commit 6811a6e

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

types/gorilla-engine/components/MappingEditor.d.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
declare namespace GorillaEngine.UI {
2-
32
interface Zone {
43
path: string;
54
name: string;
@@ -13,8 +12,8 @@ declare namespace GorillaEngine.UI {
1312
interface MappingEditorProps extends Common, Bounds, Background {
1413
zones?: Zone[];
1514
refreshView(index?: number): void;
16-
addZone(zone: Partial<Zone> ): Zone;
17-
removeZone(zone: Partial<Zone> ): void;
15+
addZone(zone: Partial<Zone>): Zone;
16+
removeZone(zone: Partial<Zone>): void;
1817
}
1918

2019
// tslint:disable-next-line:no-empty-interface

types/gorilla-engine/gorilla-engine-tests.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
const mylabel = new GorillaEngine.UI.Label({ text: "rr" });
32

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

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

18-
const mappingEditor = new GorillaEngine.UI.MappingEditor({ id: 'myMappingEditor'})
17+
const mappingEditor = new GorillaEngine.UI.MappingEditor({ id: "myMappingEditor" });

types/gorilla-engine/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -598,4 +598,4 @@ declare namespace GorillaEngine {
598598
*/
599599
function setSettingsButtonPosition(x: number, y: number): void;
600600
}
601-
}
601+
}

0 commit comments

Comments
 (0)