bamble_skills_controller
Version:
schemas for all microservices
5 lines (4 loc) • 307 B
TypeScript
import { RESPONSE_TYPE } from "../types/index";
export declare const getAllSkillCategories: () => Promise<RESPONSE_TYPE>;
export declare const isValidCategory: (category: string) => Promise<boolean>;
export declare const isSkillInCategory: (skill: string[], category: any) => Promise<boolean | string>;