| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- 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'
- // public/myData.js 里面的一些数据的类型
- declare const baseUrlLoc: string
- declare const baseUrlAtl: string
- declare const isPcTemp: boolean
- declare const myDataTemp: MyDataType
- declare const otherUrlTemp: string
- declare const myHotInfo: any
- declare const apiUrlTemp: string
- // 微信浏览器--视频转画布
- declare const F_Video: any
- type MyDataType = {
- isLdong: boolean
- baseInfo: { title: string; text: string; path: string }[]
- introInfo: { title: string; text: string }[]
- detail_modal: {
- top: { title: string; txt: string }[]
- bottom: { title: string; txt: string }[]
- }
- allTxt: { title: string }[]
- readDetail: {
- words: { name: string; define: string; inset: string }[]
- intro: string
- mzmtz: { title: string; content: string }
- origin: string
- translate: string
- }[]
- // 属性之辩
- shuxing: {
- name: string
- time: string
- size: string
- desc: string
- img: string
- }[]
- // 未解之思
- weijie: string
- // 造像中国化
- sinicizeDataStatic: { desc: string }
- sinicizeData: {
- time: string
- bgPath: string
- desc: string
- items: { title: string; txt: string }[]
- imgItems: { title: string; src: string; txt: string }[]
- }[]
- zaoxiangDataDetail: {
- type: string
- name: string
- intro: string
- imgItems: {
- src: string
- title: string
- }[]
- }[]
- // 家族谱系
- genealogyData: {
- name: string
- type: string
- addTxt: string
- extra: string
- position: { x: number; y: number }
- text1: { title: string; content: string }
- text2: { title: string; content: string }
- }[]
- }
|