// 利用declare namespace声明全局类型
declare namespace DS_T {
    type IDarr = any[]

    interface IDobj {
      [index: string]: any
    }
}

declare interface Window { //window对象属性
  ds12138_uuids: DS_T.IDobj; // 给window加自定义属性
}