mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 16:33:15 +01:00
22 lines
366 B
TypeScript
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",
|
|
|
|
}
|
|
|
|
|