Module refactoring
All checks were successful
Lint / lint (push) Successful in 13s

This commit is contained in:
Julien Valverdé
2024-09-05 00:51:08 +02:00
parent df8cc36304
commit c96c01b295
2 changed files with 3 additions and 6 deletions

View File

@@ -1,2 +1,2 @@
export * from "./ExpressApp"
export * from "./ExpressNodeHTTPServer"
export * as ExpressApp from "./ExpressApp"
export * as ExpressNodeHTTPServer from "./ExpressNodeHTTPServer"

View File

@@ -1,5 +1,2 @@
/**
* A wrapper around the jsonwebtoken library for Effect
* Requires `effect`, `jsonwebtoken` and `@types/jsonwebtoken` to be installed
*/
export * from "./express"
export * as JSONWebToken from "./JSONWebToken"