Interface ICache

interface ICache {
    absoluteExpiration: Date;
    name: string;
    value: unknown;
    IsExpired(): boolean;
}

Implemented by

Properties

absoluteExpiration: Date
name: string
value: unknown

Methods

  • Returns boolean