mirror of
https://github.com/enso-org/enso.git
synced 2024-12-12 19:16:08 +03:00
44f2f425c0
- Depends on #7773. - Implements binary WebSocket protocol (data protocol) - Performs some editor initialization (the bare minimum so that visualizations work) - Adds event handlers to receive visualization data updates # Important Notes None
17 lines
645 B
TypeScript
17 lines
645 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
declare const PROJECT_MANAGER_URL: string
|
|
declare const RUNNING_VTEST: boolean
|
|
|
|
// This is an augmentation to the built-in `ImportMeta` interface.
|
|
// This file MUST NOT contain any top-level imports.
|
|
// interface ImportMeta {
|
|
// vitest: typeof import('vitest') | undefined
|
|
// }
|
|
|
|
declare module 'builtins' {
|
|
export const VisualizationContainer: typeof import('@/components/VisualizationContainer.vue').default
|
|
export const useVisualizationConfig: typeof import('@/providers/visualizationConfig').useVisualizationConfig
|
|
export const defineKeybinds: typeof import('@/util/shortcuts').defineKeybinds
|
|
}
|