Skip to content

Commit

Permalink
refactor(web): explicitly list exports
Browse files Browse the repository at this point in the history
  • Loading branch information
ermshiperete committed Dec 11, 2024
1 parent ce89d66 commit 27e7418
Showing 2 changed files with 5 additions and 8 deletions.
6 changes: 2 additions & 4 deletions web/src/engine/js-processor/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
export { JSKeyboardProcessor } from "./jsKeyboardProcessor.js";
export * from "./jsKeyboardProcessor.js";
export { BeepHandler, JSKeyboardProcessor, LogMessageHandler, ProcessorInitOptions } from "./jsKeyboardProcessor.js";
export { default as RuleBehavior } from "./ruleBehavior.js";
export * from './jsKeyboardInterface.js';
export { JSKeyboardInterface } from "./jsKeyboardInterface.js";
export { JSKeyboardInterface, KeyInformation, StoreNonCharEntry } from "./jsKeyboardInterface.js";
export * from "./systemStores.js";
export * from "./deadkeys.js";
export { default as OutputTarget } from "./outputTarget.js";
7 changes: 3 additions & 4 deletions web/src/engine/keyboard/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
export * from "./keyboards/activeLayout.js";
export * from "./keyboards/defaultLayouts.js";
export { JSKeyboard } from "./keyboards/jsKeyboard.js";
export * from "./keyboards/jsKeyboard.js";
export { ActiveKeyBase, ActiveKey, ActiveSubKey, ActiveRow, ActiveLayer, ActiveLayout } from "./keyboards/activeLayout.js";
export { ButtonClass, ButtonClasses, LayoutLayer, LayoutFormFactor, LayoutRow, LayoutKey, LayoutSubKey, Layouts } from "./keyboards/defaultLayouts.js";
export { JSKeyboard, LayoutState, VariableStoreDictionary } from "./keyboards/jsKeyboard.js";
export { KeyboardHarness, KeyboardKeymanGlobal, MinimalCodesInterface, MinimalKeymanGlobal } from "./keyboards/keyboardHarness.js";
export { KeyboardLoaderBase } from "./keyboards/keyboardLoaderBase.js";
export { KeyboardLoadErrorBuilder, KeyboardMissingError, KeyboardScriptError, KeyboardDownloadError, InvalidKeyboardError } from './keyboards/keyboardLoadError.js'

0 comments on commit 27e7418

Please sign in to comment.