1. 接口可以重复定义,相同名称接口会合并 ```typescript // 在window上添加属性 interface Window{ age: number }

    window.age = 19;

    ```