https://github.com/codewars/tags
Tag definitions
https://github.com/codewars/tags
Last synced: 10 months ago
JSON representation
Tag definitions
- Host: GitHub
- URL: https://github.com/codewars/tags
- Owner: codewars
- Created: 2022-07-08T08:37:47.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-12T17:53:29.000Z (over 3 years ago)
- Last Synced: 2025-04-05T13:11:12.875Z (10 months ago)
- Language: TypeScript
- Homepage: https://www.codewars.com/tags
- Size: 16.6 KB
- Stars: 5
- Watchers: 10
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tags
```typescript
type Tag = {
name: string;
type?: "keyword" | "topic" | "style" | "domain" | "package";
description?: string;
aliases?: string[];
featured?: boolean;
icon?: string;
};
```