mock-service-plugin
Version:
Simulated backend interface service
11 lines (8 loc) • 307 B
TypeScript
import { BaseResponseHandler } from './base-handler.js';
import 'express';
import '../types.d.js';
declare class ResponseHandlerFactory {
static getHandler(contentType: string): BaseResponseHandler;
static getContentTypeByExtension(extension: string): string;
}
export { ResponseHandlerFactory };