Skip to content

codewars/tags

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Tags

type Tag = {
  name: string;
  type?: "keyword" | "topic" | "style" | "domain" | "package";
  description?: string;
  aliases?: string[];
  featured?: boolean;
  icon?: string;
};