From aed68688a1fbe64208bdd5ffc3549c0c394f0491 Mon Sep 17 00:00:00 2001 From: Matei Adriel Date: Sun, 22 Dec 2019 17:50:25 +0200 Subject: [PATCH] typescript(option): fix: fixed the exporting by misstake of Some and None Signed-off-by: prescientmoon --- typescript/option/src/types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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