fabasoad/business-card

View on GitHub
src/scripts/technologies/types.ts

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
export interface Technology {
  name: string
  title: string
  img?: any
  isSkill?: boolean
}

export interface TechnologyProvider {
  items: Map<string, Technology>
}