const op = { check: () => true }; export const overloadProtectors: Record = new Proxy({}, { get: () => op }); export function overloadProtection(...a: any[]): any { return null; }