Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 | import { ValidatorResult } from 'jsonschema';
import Restapify, { HttpVerb } from 'restapify';
export declare const getMethodOutput: (method: any) => string;
export declare const consoleError: (message: string) => void;
export declare const getInstanceOverviewOutput: (port: number, apiBaseURL: string) => string;
export declare const onRestapifyInstanceError: (error: any, instanceData: Pick<Restapify, 'apiBaseUrl' | 'port' | 'rootDir'>) => void;
export declare const getRoutesListOutput: (routesList: {
route: string;
method: HttpVerb;
}[], apiBaseUrl: string) => string;
export declare const runServer: (config: any) => void;
export declare const validateConfig: (config: object) => ValidatorResult;
|