mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-18 06:22:54 +01:00
22 lines
341 B
TypeScript
22 lines
341 B
TypeScript
import {ProjectService} from "cad/projectPlugin";
|
|
|
|
export interface LegacyContext {
|
|
services: any,
|
|
streams: any,
|
|
}
|
|
|
|
export interface ApplicationContext extends LegacyContext {
|
|
|
|
projectService: ProjectService;
|
|
|
|
}
|
|
|
|
export type CoreContext = ApplicationContext;
|
|
|
|
export default {
|
|
|
|
services: {},
|
|
streams: {}
|
|
|
|
} as ApplicationContext;
|
|
|