Skip to content

Commit

Permalink
export "Options" and "EtaConfig" types in JSR (#295) (#297)
Browse files Browse the repository at this point in the history
  • Loading branch information
pasha-bolokhov authored Aug 7, 2024
1 parent b0e2c30 commit f468e20
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ import { Eta as EtaCore } from "./core.ts";
import { readFile, resolvePath } from "./file-handling.ts";
export {
EtaError,
EtaParseError,
EtaRuntimeError,
EtaFileResolutionError,
EtaNameResolutionError,
EtaParseError,
EtaRuntimeError,
} from "./err.ts";
export { type EtaConfig, type Options } from "./config.ts";

export class Eta extends EtaCore {
readFile = readFile;
Expand Down

0 comments on commit f468e20

Please sign in to comment.