Files
openchamber/packages/ui/src/contexts/runtimeAPIRegistry.ts
T

10 lines
306 B
TypeScript
Raw Normal View History

2025-12-07 19:32:53 +02:00
import type { RuntimeAPIs } from '@/lib/api/types';
let registeredRuntimeAPIs: RuntimeAPIs | null = null;
export const registerRuntimeAPIs = (apis: RuntimeAPIs | null): void => {
registeredRuntimeAPIs = apis;
};
export const getRegisteredRuntimeAPIs = (): RuntimeAPIs | null => registeredRuntimeAPIs;