ixfx
    Preparing search index...

    Type Alias SwitcherOptions

    Switcher options.

    match (default: 'first')

    • 'first': Outputs to first case where predicate is true
    • 'all': Outputs to all cases where predicate is true
    type SwitcherOptions = {
        match: "first" | "all";
    }
    Index

    Properties

    Properties

    match: "first" | "all"