ssr.d.ts 253 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 /** * whether in browser env */ export declare const isBrowser: () => boolean; /** * get window.g_initialProps */ export declare const getWindowInitialProps: () => any; /** * whether SSR success in client */ export declare const isSSR: () => any;