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

8 lines (7 loc) 148 B
/** * @param {string} env */ export function setEnv(env: string): void; export const DEV: true; export const PROD: false; export let ENV: string;