jsketcher/web/app/cad/context/LegacyStructureBundle.ts
2022-08-14 20:48:44 -07:00

22 lines
366 B
TypeScript

import {Bundle} from "bundler/bundleSystem";
import {ApplicationContext} from "cad/context";
export interface LegacyStructureBundleContext {
services: any,
streams: any
}
export const LegacyStructureBundle: Bundle<ApplicationContext> = {
activate(ctx: ApplicationContext) {
ctx.services = {};
ctx.streams = {};
},
BundleName: "@Legacy",
}