Interface Entry<T>

interface Entry<T> {
    bucket: string;
    expiresAt?: Date;
    key: string;
    pluginId: null | string;
    value: T;
}

Type Parameters

  • T

Properties

bucket: string

The bucket this entry was in

expiresAt?: Date

If a ttl was set, when this entry expires

key: string

Key where this entry was stored at the time of fetching

pluginId: null | string

This entry belongs to the specified plugin

value: T

Value this entry holds

Generated using TypeDoc