@exionstech/skills-wrap
Version:
Comprehensive tech skills and roles database with utilities for IT service companies.
29 lines • 1.02 kB
TypeScript
export declare const SKILL_LEVELS: {
readonly BEGINNER: "beginner";
readonly INTERMEDIATE: "intermediate";
readonly ADVANCED: "advanced";
readonly EXPERT: "expert";
};
export declare const CATEGORIES: {
readonly FRONTEND: "frontend";
readonly BACKEND: "backend";
readonly FULLSTACK: "fullstack";
readonly MOBILE: "mobile";
readonly DEVOPS: "devops";
readonly DATA: "data";
readonly AI_ML: "ai_ml";
readonly SECURITY: "security";
readonly BLOCKCHAIN: "blockchain";
readonly GAMING: "gaming";
readonly MANAGEMENT: "management";
readonly ANALYSIS: "analysis";
readonly QA: "qa";
};
export declare const LOGO_SOURCES: {
readonly API_URL: "https://api.svgl.app";
readonly BASE_URL: "https://svgl.app/library/";
readonly DOCUMENTATION: "https://svgl.app/api";
};
export type SkillLevelType = typeof SKILL_LEVELS[keyof typeof SKILL_LEVELS];
export type CategoryType = typeof CATEGORIES[keyof typeof CATEGORIES];
//# sourceMappingURL=index.d.ts.map