Skip to content

Commit

Permalink
fix(ses): Add missing reexports map field on precompiled module source
Browse files Browse the repository at this point in the history
  • Loading branch information
kriskowal committed Jul 19, 2024
1 parent 165e816 commit 78b273d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/ses/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ export type ModuleExportsNamespace = Record<string, any>;

export type __LiveExportMap__ = Record<string, [string, boolean]>;
export type __FixedExportMap__ = Record<string, [string]>;
export type __ReexportMap__ = Record<string, Array<[string, string]>>;

export interface PrecompiledModuleSource {
imports: Array<string>;
Expand All @@ -55,6 +56,7 @@ export interface PrecompiledModuleSource {
__syncModuleProgram__: string;
__liveExportMap__: __LiveExportMap__;
__fixedExportMap__: __FixedExportMap__;
__reexportMap__: __ReexportMap__;
}

export interface VirtualModuleSource {
Expand Down

0 comments on commit 78b273d

Please sign in to comment.