We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e563eca commit 8ee9eeaCopy full SHA for 8ee9eea
src/components/skills/skillsUtils.ts
@@ -2,10 +2,6 @@ import moment from "moment";
2
3
export const SKILL_URL_PREFIX = `https://github.com/dargaCode?tab=repositories&q=topic%3A`;
4
5
-export interface SkillSortComparator {
6
- (a: Skill, b: Skill): number;
7
-}
8
-
9
export interface RawSkill {
10
name: string;
11
displayName: string;
@@ -18,6 +14,10 @@ export interface Skill extends RawSkill {
18
14
timeSinceCommit: string;
19
15
}
20
16
17
+export interface SkillSortComparator {
+ (a: Skill, b: Skill): number;
+}
+
21
// used for tests, and when waiting for data to load
22
export const EMPTY_SKILL: Skill = {
23
name: "",
0 commit comments