layot.d.ts 493 B

123456789101112131415161718192021222324252627
  1. export type LookDomType = {
  2. src: string
  3. type: 'video' | 'audio' | 'model' | ''
  4. flag?: boolean
  5. }
  6. export type RouterTypeRow = {
  7. id: string
  8. name: string
  9. path: string
  10. Com: React.LazyExoticComponent<React.MemoExoticComponent<() => JSX.Element>>
  11. done: boolean
  12. noShow?: boolean
  13. }[]
  14. export type RouterType = {
  15. id: string
  16. name: string
  17. son: RouterTypeRow
  18. }[]
  19. export type FileImgListType = {
  20. id: number
  21. fileName: string
  22. filePath: string
  23. type: 'img' | 'video' | 'doc'
  24. }