Interface AdEvent<TType>

Base type for events related to a single ad.

interface AdEvent<TType> {
    ad: Ad;
    date: Date;
    type: TType;
}

Type Parameters

  • TType extends string

Hierarchy (view full)

Properties

Properties

ad: Ad

The ad.

date: Date

The creation date of the event.

type: TType

The type of the event.

Generated using TypeDoc