@solapi/mcp-server
Version:
MCP server for SOLAPI document search and integration
38 lines • 974 B
TypeScript
/**
* @file PHP SDK 예제 라이브러리
* @description SOLAPI PHP SDK 사용 예제 모음
*/
import type { Example } from '../types';
export declare class PhpExamplesLibrary {
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[];
/**
* 통계 정보 반환
*/
static getStats(): {
totalExamples: number;
categories: number;
totalKeywords: number;
averageKeywordsPerExample: number;
};
}
//# sourceMappingURL=phpExamples.d.ts.map