api-mockingbird
Version:
MCP server for creating HTTP mock APIs for frontend development
16 lines (15 loc) • 437 B
TypeScript
export declare const MIN_PORT = 1024;
export declare const MAX_PORT = 65535;
export declare const HTTP_STATUS: {
readonly OK: 200;
readonly INTERNAL_SERVER_ERROR: 500;
readonly MIN_STATUS: 100;
readonly MAX_STATUS: 599;
readonly MIN_CLIENT_ERROR: 400;
readonly MAX_CLIENT_ERROR: 599;
};
export declare const DEFAULT_HTTP_STATUS: 200;
export declare const DELAY: {
readonly MIN: 0;
readonly MAX: 10000;
};