/** Loads a global variable and asserts its type */ export function getGlobal(name: string): Value { const value: Value = (globalThis as any)[name]; return value; }