import {ISchema, ISchemaMethod} from './index'; export interface ISchemaService { initialize(): void; getSchema(type: string): ISchema; getMethodSchema(type: string, method: string): ISchemaMethod; }