File size: 904 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
//import './wdyr';
export * from './core/types';
export * from './core/components/hooks';
export * from './ui';
import lazyLoad from './core/helper/lazyLoad';
import { Migration } from './core/migrations/Migration';
import Editor, { EditorProps } from './editor/Editor';
import makeUniformsSchema from './ui/AutoformControls/makeUniformsSchema';
import { migrateValue } from './core/migrations/migrate';
import deepEquals from './core/utils/deepEquals';
import { createValue } from './core/utils/createValue';
import { objIsNode } from './core/utils/objIsNode';
import { getTextContents } from './core/utils/getTextContents';
export { objIsNode };
export { lazyLoad };
export { EditorProps };
export { Migration };
export { makeUniformsSchema };
export { createValue, getTextContents };
export { migrateValue };
export { deepEquals };
export default Editor;
export const VERSION = '###VERSION###';
|