jsketcher/modules/context/index.ts
2020-06-09 21:52:49 -07:00

19 lines
317 B
TypeScript

/**
* CoreContext shouldn't contain any UI services because it can be potentially used in the headless mode
*/
export interface CoreContext {
}
export interface ApplicationContext extends CoreContext {
services: any,
streams: any,
}
export default {
services: {},
streams: {}
} as ApplicationContext;