import * as factory from '../factory'; import { ISearchResult, Service } from '../service'; export interface IGetHealthResult { version?: string; status?: number; message?: string; } /** * プロジェクトサービス */ export declare class ProjectService extends Service { /** * プロジェクト検索 */ search(params: factory.project.ISearchConditions): Promise>; /** * プロジェクト取得 */ findById(params: { id: string; }): Promise; /** * ヘルスチェック */ getHealth(_: any): Promise; /** * DB統計取得 */ getDBStats(_: any): Promise; }