mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 16:33:15 +01:00
19 lines
317 B
TypeScript
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;
|
|
|