const handler = { execute: async (fn: any) => fn() }; export const bulkheads: Record = new Proxy({}, { get: () => handler }); export function bulkhead(...a: any[]): any { return null; }