Skip to content

Commit

Permalink
fix: [Issue 311] Validations in ecmascript/Module - removed export
Browse files Browse the repository at this point in the history
    Enum export was causing issues with generated JS

Signed-off-by: Mihail Penchev (c) <[email protected]>
  • Loading branch information
bcpmihail committed Aug 1, 2024
1 parent 7355ecf commit 16c50af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ecmascript/src/Module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const GLOBAL = System.getContext() || (function () {
export type ModuleErrorHandler = (error: string | Error) => void;

/** Predefined {@link ModuleErrorHandler error handler options} for use in {@link Module.setModuleErrorHandler} */
export enum DefaultModuleErrorHandlers {
enum DefaultModuleErrorHandlers {
/** [Default] Creates a System ERROR level log entry for the error. */
SYS_ERROR,
/** Creates a System WARNING level log entry for the error. */
Expand Down

0 comments on commit 16c50af

Please sign in to comment.