threepipe
Version:
A modern 3D viewer framework built on top of three.js, written in TypeScript, designed to make creating high-quality, modular, and extensible 3D experiences on the web simple and enjoyable.
11 lines • 456 B
JavaScript
// eslint-disable-next-line @typescript-eslint/naming-convention
export function _testFinish() {
window.dispatchEvent(new Event('threepipe-test-finished'));
document.body.classList.add('_testFinish');
}
// eslint-disable-next-line @typescript-eslint/naming-convention
export function _testStart() {
window.dispatchEvent(new Event('threepipe-test-started'));
document.body.classList.add('_testStarted');
}
//# sourceMappingURL=testing.js.map