From f468e204da032613344286658fb9cf65a2590445 Mon Sep 17 00:00:00 2001 From: pasha-bolokhov Date: Wed, 7 Aug 2024 14:54:28 -0700 Subject: [PATCH] export "Options" and "EtaConfig" types in JSR (#295) (#297) --- src/index.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index f756138..6472456 100644 --- a/src/index.ts +++ b/src/index.ts @@ -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;