mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-07 06:52:28 +03:00
9 lines
280 B
TypeScript
9 lines
280 B
TypeScript
import '~/index.scss';
|
|
import { createDOM, appendChildren } from '~/support';
|
|
import { getEnvironment } from '~/environment';
|
|
|
|
const envInstance = getEnvironment();
|
|
appendChildren(document.body, createDOM(`<div>${JSON.stringify(envInstance)}</div>`)[0]);
|
|
|
|
export { envInstance };
|