14 lines
493 B
JavaScript
14 lines
493 B
JavaScript
/**
|
|
* @deprecated Use `canUseDOM` from `@fluentui/utilities` instead.
|
|
*/
|
|
export var _isSSR = false;
|
|
/**
|
|
* Helper to set ssr mode to simulate no window object returned from getWindow helper.
|
|
*
|
|
* @deprecated Use `canUseDOM` from `@fluentui/utilities` instead.
|
|
*/
|
|
export function setSSR(isEnabled) {
|
|
throw new Error('setSSR has been deprecated and is not used in any utilities anymore.' +
|
|
' Use canUseDOM from @fluentui/utilities instead.');
|
|
}
|
|
//# sourceMappingURL=setSSR.js.map
|