jsketcher/modules/context/index.ts
2020-05-16 22:22:02 -07:00

13 lines
150 B
TypeScript

export interface ApplicationContext {
services: any,
streams: any,
}
export default {
services: {},
streams: {}
} as ApplicationContext;