UNPKG

@qwik.dev/core

Version:

An open source framework for building instant loading web apps at any scale, without the extra effort.

23 lines (19 loc) 341 B
/** * True when build is made for browser, client-side execution. * * @public */ export declare const isBrowser: boolean; /** * True when build is in dev mode. * * @public */ export declare const isDev: boolean; /** * True when build is made for SSR purposes. * * @public */ export declare const isServer: boolean; export { }