Skip to content

Commit

Permalink
Merge pull request #71 from axelboc/fix-import
Browse files Browse the repository at this point in the history
Fix missing extension in type import
  • Loading branch information
bmaranville committed Apr 3, 2024
2 parents 13af6ff + f2b8fdf commit 12a7fc4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/hdf5_hl.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Status, Metadata, H5Module, CompoundMember, CompoundTypeMetadata, EnumTypeMetadata, Filter } from "./hdf5_util_helpers";
import type { Status, Metadata, H5Module, CompoundMember, CompoundTypeMetadata, EnumTypeMetadata, Filter } from "./hdf5_util_helpers.js";
export declare var Module: H5Module;
export declare var FS: (FS.FileSystemType | null);
declare const ready: Promise<H5Module>;
Expand Down
2 changes: 1 addition & 1 deletion src/hdf5_hl.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type {Status, Metadata, H5Module, CompoundMember, CompoundTypeMetadata, EnumTypeMetadata, Filter} from "./hdf5_util_helpers";
import type {Status, Metadata, H5Module, CompoundMember, CompoundTypeMetadata, EnumTypeMetadata, Filter} from "./hdf5_util_helpers.js";

import ModuleFactory from './hdf5_util.js';

Expand Down

0 comments on commit 12a7fc4

Please sign in to comment.