Interface InterstitialEvent<TType>

Base type for events related to an interstitial.

interface InterstitialEvent<TType extends string> {
    date: Date;
    interstitial: Interstitial;
    type: TType;
}

Type Parameters

  • TType extends string

Hierarchy (View Summary)

Properties

date: Date

The creation date of the event.

interstitial: Interstitial

The interstitial.

type: TType

The type of the event.