/* * @Author: your name * @Date: 2021-11-19 16:31:19 * @LastEditTime: 2021-12-21 17:50:45 * @LastEditors: Please set LastEditors * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @FilePath: /KC-MiddlePlatform/src/typings.d.ts */ type SystemListItem = { //平台列表项 icon: string; id: string; name: string; url: string; }; declare interface PostMessageData { type:'LOGOUT'|'REFRESH'|'DATA'|'LOGIN', data?:any } declare interface Window { stateFromTop: any, postMessageToChild:(data:PostMessageData)=>Promise, removeListenner:(name:string)=>Promise, } declare interface Iframe { contentWindow:any }