diff --git a/spec.ts b/spec.ts index 22c294d..63b9f36 100644 --- a/spec.ts +++ b/spec.ts @@ -30,11 +30,13 @@ export interface Ok extends Container { get get(): T; } +/** {@linkcode Ok} constructor. */ export interface OkConstructor { /** {@linkcode Ok} value of type {@linkcode T} . */ (value: T): Ok; } +/** {@linkcode Err} constructor. */ export interface ErrConstructor { /** {@linkcode Err} value of type {@linkcode E} . */ (value: E): Err;