ChemPal Documentation - v0.0.13-beta.5
    Preparing search index...
    • Type guard to check if an EventTarget is an HTMLButtonElement.

      Parameters

      Returns target is HTMLButtonElement

      Type predicate indicating if the target is an HTMLButtonElement

      export function isButtonElement(target: EventTarget | null): target is HTMLButtonElement {
      return target instanceof HTMLButtonElement;
      }