EmmaRamirez/Clickopolis

View on GitHub
src/models/Biome.ts

Summary

Maintainability
A
0 mins
Test Coverage
export type BiomeType = 'Desert' | 'Tundra' | 'Island' | 'Coast' | 'Plains' | 'Forest' | 'Mountains' | '';

export interface Biome {
  name: BiomeType;
  description: string;
}