0.1.6Updated a month ago
// deno-lint-ignore-file ban-types

declare namespace Audience {
  type Item<CustomFields extends CustomFieldMap = {}> = {
    id?: number

    key: string

    source?: string
    meta?: string

    joined_at: Date

    last_active: Date
    active: boolean
  }

  namespace Item {
    type Unentered<CustomFields extends CustomFieldMap> = Item<CustomFields>
  }
}