mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-09 09:52:34 +01:00
10 lines
279 B
JavaScript
10 lines
279 B
JavaScript
import * as test from './test';
|
|
import modellerUISubject from './utils/subjects/modeller/modellerUISubject';
|
|
|
|
export const modellerUI = func => env => {
|
|
test.emptyModeller(env.test(win => {
|
|
let subject = modellerUISubject(win.__CAD_APP);
|
|
func(env, subject);
|
|
}));
|
|
};
|
|
|