Skip to main content

Overlay

Callable

  • Overlay(): (constructor: any) => void

  • An @Overlay is a class decorator to be placed on top of a class that represents an overlay.

    • An overlay must extend the AOverlay class.
    @example
    @Overlay()
    export class MyOverlay extends AOverlay<MyOverlay> { ... }
    @see

    Definition of Overlays.


    Returns (constructor: any) => void

    The decorated class.

      • (constructor: any): void
      • Parameters

        • constructor: any

        Returns void