@pathmaker-digital/pmd-utilities - v2.2.6
    Preparing search index...

    Type Alias DefaultCase

    Represents the default case in a switch-like structure. This case is executed if none of the other cases match.

    type DefaultCase = {
        default: true;
        operation: () => void;
    }
    Index

    Properties

    Properties

    default: true

    A flag to indicate that this is the default case.

    operation: () => void

    The function to execute when the default case is selected.