UNPKG

@solapi/mcp-server

Version:

MCP server for SOLAPI document search and integration

29 lines 761 B
import type { Example } from "../types"; /** * @file Go SDK 예제 라이브러리 * @description SOLAPI Go SDK 사용 예제 모음 */ export declare class GoExamplesLibrary { private static examples; /** * 모든 예제 반환 */ static getExamples(): Example[]; /** * 카테고리별 예제 반환 */ static getExamplesByCategory(category: string): Example[]; /** * ID로 특정 예제 검색 */ static getExampleById(id: string): Example | null; /** * 키워드로 예제 검색 */ static searchExamples(query: string): Example[]; /** * 사용 가능한 카테고리 목록 반환 */ static getCategories(): string[]; } //# sourceMappingURL=goExamples.d.ts.map