1.3.4 • Published 6 months ago

@types/lscache v1.3.4

Weekly downloads
6,553
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/lscache

Summary

This package contains type definitions for lscache (https://github.com/pamelafox/lscache).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/lscache.

index.d.ts

// Type definitions for lscache 1.3
// Project: https://github.com/pamelafox/lscache
// Definitions by: c-py <https://github.com/c-py>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

interface LSCache {

    /**
    * Stores the value in localStorage. Expires after specified number of minutes.
    * @param {string} key
    * @param {Object|string} value
    * @param {number} time
    * @return true if the value was inserted successfully
    */
    set(key: string, value: any, time?: number): boolean;
    /**
    * Retrieves specified value from localStorage, if not expired.
    * @param {string} key
    * @return {string|Object}
    */
    get(key: string): any;
    /**
    * Removes a value from localStorage.
    * Equivalent to 'delete' in memcache, but that's a keyword in JS.
    * @param {string} key
    */
    remove(key: string): void;
    /**
    * Returns whether local storage is supported.
    * Currently exposed for testing purposes.
    * @return {boolean}
    */
    supported(): boolean;
    /**
    * Flushes all lscache items and expiry markers without affecting rest of localStorage
    */
    flush(): void;
    /**
    * Flushes expired lscache items and expiry markers without affecting rest of localStorage
    */
    flushExpired(): void;
    /**
    * Appends CACHE_PREFIX so lscache will partition data in to different buckets.
    * @param {string} bucket
    */
    setBucket(bucket: string): void;
    /**
    * Resets the string being appended to CACHE_PREFIX so lscache will use the default storage behavior.
    */
    resetBucket(): void;
    /**
    * @returns {number} The currently set number of milliseconds each time unit represents in
    *   the set() function's "time" argument.
    */
    getExpiryMilliseconds(): number;
    /**
    * Sets the number of milliseconds each time unit represents in the set() function's
    *   "time" argument.
    * Sample values:
    *  1: each time unit = 1 millisecond
    *  1000: each time unit = 1 second
    *  60000: each time unit = 1 minute (Default value)
    *  360000: each time unit = 1 hour
    * @param {number} milliseconds
    */
   setExpiryMilliseconds(milliseconds: number): void;
    /**
    * Sets whether to display warnings when an item is removed from the cache or not.
    */
    enableWarnings(enabled: boolean): void;
}
declare var lscache: LSCache;
declare module 'lscache' {
    var lscache: LSCache;
    export = lscache;
}

Additional Details

  • Last updated: Thu, 23 Dec 2021 23:35:03 GMT
  • Dependencies: none
  • Global values: lscache

Credits

These definitions were written by c-py.

1.3.4

6 months ago

1.3.3

7 months ago

1.3.2

8 months ago

1.3.1

2 years ago

1.3.0

5 years ago

1.0.29

8 years ago

1.0.28

8 years ago

1.0.27

8 years ago

1.0.26-alpha

8 years ago

1.0.25-alpha

8 years ago

1.0.24-alpha

8 years ago

1.0.23-alpha

8 years ago

1.0.22-alpha

8 years ago

1.0.21-alpha

8 years ago

1.0.20-alpha

8 years ago

1.0.15-alpha

8 years ago

1.0.14-alpha

8 years ago