Fixed formatting issues.

This commit is contained in:
Daan Vanden Bosch 2020-09-26 16:49:07 +02:00
parent 5f5aa84ec4
commit d7588888ae
4 changed files with 4227 additions and 1146 deletions

File diff suppressed because it is too large Load Diff

View File

@ -33,7 +33,8 @@ class LengthProperty extends AbstractProperty<number> {
}
}
export abstract class AbstractListProperty<T> extends AbstractProperty<readonly T[]>
export abstract class AbstractListProperty<T>
extends AbstractProperty<readonly T[]>
implements ListProperty<T> {
readonly is_list_property = true;

View File

@ -6,7 +6,8 @@ import { is_list_property, ListChangeType, ListProperty } from "./ListProperty";
import { AbstractListProperty } from "./AbstractListProperty";
import { MappedListProperty } from "./MappedListProperty";
export class SimpleListProperty<T> extends AbstractListProperty<T>
export class SimpleListProperty<T>
extends AbstractListProperty<T>
implements WritableListProperty<T> {
get val(): readonly T[] {
return this.get_val();

View File

@ -24,8 +24,10 @@ export class EventSubGraphView extends View {
/**
* Maps event IDs to GUI data.
*/
private readonly event_gui_data: Map<QuestEventModel,
{ event_view: EventView; position: number }> = new Map();
private readonly event_gui_data: Map<
QuestEventModel,
{ event_view: EventView; position: number }
> = new Map();
private readonly event_container_element = div({
className: "quest_editor_EventSubGraphView_event_container",