UNPKG

@thepassle/app-tools

Version:

Collection of tools I regularly use to build apps. Maybe they're useful to somebody else. Maybe not. Most of these are thin wrappers around native API's, like the native `<dialog>` element, `fetch` API, and `URLPattern`.

9 lines (8 loc) 237 B
/** * @param {{maxAge?: number}} options * @returns {import('../index.js').Plugin} */ export function cachePlugin({ maxAge }?: { maxAge?: number; }): import('../index.js').Plugin; export const cache: import("../types.js").Plugin;