14 lines
361 B
TypeScript
14 lines
361 B
TypeScript
import { createWebAPIs } from './api';
|
|
import type { RuntimeAPIs } from '@openchamber/ui/lib/api/types';
|
|
import '@openchamber/ui/index.css';
|
|
import '@openchamber/ui/styles/fonts';
|
|
|
|
declare global {
|
|
interface Window {
|
|
__OPENCHAMBER_RUNTIME_APIS__?: RuntimeAPIs;
|
|
}
|
|
}
|
|
|
|
window.__OPENCHAMBER_RUNTIME_APIS__ = createWebAPIs();
|
|
import('@openchamber/ui/main');
|