feat: export types and errors

This commit is contained in:
HerozDotExe 2026-06-29 15:33:10 +02:00
parent 069329181e
commit dd188d087e
2 changed files with 3 additions and 0 deletions

View file

@ -1,2 +1,3 @@
export * as core from "./core";
export * from "./launcher";
export {errors, type types} from "./utils"

2
src/utils/index.ts Normal file
View file

@ -0,0 +1,2 @@
export * as errors from "./errors";
export * as types from "./types";