1// @noTypesAndSymbols: true 2// @esModuleInterop: true 3// @declaration: true 4 5// @Filename: test.ts 6import Op from './op'; 7import { Po } from './po'; 8 9export default function foo() { 10 return { 11 [Op.or]: [], 12 [Po.ro]: {} 13 }; 14} 15 16// @Filename: op.ts 17declare const Op: { 18 readonly or: unique symbol; 19}; 20 21export default Op; 22 23// @Filename: po.d.ts 24export declare const Po: { 25 readonly ro: unique symbol; 26}; 27