mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-07 08:53:25 +01:00
13 lines
150 B
TypeScript
13 lines
150 B
TypeScript
export interface ApplicationContext {
|
|
|
|
services: any,
|
|
streams: any,
|
|
}
|
|
|
|
export default {
|
|
|
|
services: {},
|
|
streams: {}
|
|
|
|
} as ApplicationContext;
|
|
|