| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- declare module 'history'
- declare module '*.scss'
- declare module '*.png'
- declare module '*.jpg'
- declare module '*.gif'
- declare module '*.svg'
- declare module 'js-export-excel'
- declare module 'braft-utils'
- declare module 'react-virtualized'
- declare const cardNames: any[]
- // public/myData.js 里面的一些数据的类型
- declare const isPcTemp: boolean
- declare const myDataTemp: MyDataType
- declare const apiUrlTemp: string
- // 微信浏览器--视频转画布
- declare const F_Video: any
- type MyDataType = {
- isLdong: boolean
- siderData: { title: string; path: string }[]
- sceneList: { id: string; name: string; thumbUrl: string }[]
- architectureAnimation: string
- memberList: { name: string; nameEn: string; imgSrc: string; imgSrcLight: string; videoSrc: string }[]
- lifeList: { name: string; time: string; imgSrc: string; videoSrc?: string; desc: string }[]
- }
- declare namespace JSX {
- interface IntrinsicElements {
- 'media-controller': any;
- 'media-play-button': any;
- 'media-mute-button': any;
- 'media-volume-range': any;
- 'media-time-range': any;
- 'media-pip-button': any;
- 'media-fullscreen-button': any;
- 'media-control-bar': any;
- 'media-time-display': any;
- 'media-duration-display': any;
- }
- }
|