jsketcher/modules/workbenches/examples/index.ts
2022-06-25 15:19:48 -07:00

13 lines
No EOL
268 B
TypeScript

import OCCBottle from './features/occ_bottle';
import {WorkbenchConfig} from "cad/workbench/workbenchService";
export const ExampleWorkspace: WorkbenchConfig = {
workbenchId: 'examples',
features: [
OCCBottle,
],
actions: [],
ui: {
toolbar: []
}
}