diff --git a/src/schema/effect/index.ts b/src/schema/effect/index.ts index bc47e44..720a9ef 100644 --- a/src/schema/effect/index.ts +++ b/src/schema/effect/index.ts @@ -1,6 +1 @@ -import { option as optionModule } from "./option" - - -export module effect { - export const option = optionModule -} +export { option } from "./option" diff --git a/src/schema/lib.ts b/src/schema/lib.ts index 868d177..1323289 100644 --- a/src/schema/lib.ts +++ b/src/schema/lib.ts @@ -1,5 +1,5 @@ import { decimal } from "./decimal" -import { effect } from "./effect" +import * as effect from "./effect" import { dejsonify, jsonify } from "./jsonified"