Skip to content

Commit

Permalink
review changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Eva committed Feb 6, 2024
1 parent e4db266 commit 49156a4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
StringProperty,
} from "../MappingFile";
import FlexSearch from "flexsearch";
import type { MappingObjectDocument } from "./MappingObjectDocumentType";
import type { MappingObjectDocument } from "./MappingObjectDocument";

export class MappingFileEditor extends EventEmitter<MappingFileEditorEvents> {
/**
Expand Down Expand Up @@ -46,8 +46,7 @@ export class MappingFileEditor extends EventEmitter<MappingFileEditorEvents> {
/**
* The editor's search index.
*/
public searchIndex: MappingObjectDocument;

public searchIndex: Document<MappingObjectDocument>;
/**
* The editor's undo stack.
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * from "./EditorCommands";
export * from "./MappingFileView";
export * from "./MappingFileEditor";
export * from "./MappingObjectDocumentType";
export * from "./MappingObjectDocument";

0 comments on commit 49156a4

Please sign in to comment.