Files
ionic-framework/packages/react/src/utils/HTMLElementSSR.ts
2021-08-02 10:28:51 -04:00

5 lines
122 B
TypeScript

export const HTMLElementSSR = (
typeof HTMLElement !== 'undefined'
? HTMLElement
: class {}) as typeof HTMLElement;