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`.

11 lines (10 loc) 259 B
/** * @param {{ * collapsed?: boolean * }} options * @returns {import('../index.js').Plugin} */ export function loggerPlugin({ collapsed }?: { collapsed?: boolean; }): import('../index.js').Plugin; export const logger: import("../types.js").Plugin;