plainfp - v0.1.0
    Preparing search index...

    Type Alias MatchHandlers<T, E, U>

    Handlers passed to match — one branch per Result case.

    type MatchHandlers<T, E, U> = {
        err: (error: E) => U;
        ok: (value: T) => U;
    }

    Type Parameters

    • T
    • E
    • U
    Index

    Properties

    Properties

    err: (error: E) => U
    ok: (value: T) => U