UNPKG

@builder.io/qwik

Version:

An Open-Source sub-framework designed with a focus on server-side-rendering, lazy-loading, and styling/animation.

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 { }