diff --git a/typescript/option/src/types.ts b/typescript/option/src/types.ts index e1e15af..83ff10e 100644 --- a/typescript/option/src/types.ts +++ b/typescript/option/src/types.ts @@ -5,8 +5,8 @@ type NominalTyped = { value: U } -export type None = NominalTyped -export type Some = NominalTyped +type None = NominalTyped +type Some = NominalTyped export type Option = Some | None