index.ts 302 B

1234567891011121314151617181920
  1. export type IconType = {
  2. name: string
  3. tags: string[]
  4. svg: string
  5. version: string
  6. category: string
  7. }
  8. export type IconsType = IconType[]
  9. export type DocsItem = {
  10. title: string
  11. items: {
  12. title: string
  13. href: string
  14. label?: string
  15. }[]
  16. }
  17. export type DocsConfigType = DocsItem[]