MAIDR Documentation - v3.39.0
    Preparing search index...

    Interface Command

    Interface for command pattern implementation.

    interface Command {
        execute: (event?: Event) => void;
    }

    Implemented by

    Index

    Properties

    Properties

    execute: (event?: Event) => void

    Executes the command.

    Type Declaration

      • (event?: Event): void
      • Parameters

        • Optionalevent: Event

          Optional event that triggered the command.

        Returns void