UNPKG

express-oven

Version:

An easy mock API generator with express.js

8 lines (7 loc) 413 B
import { HttpMethod } from './typing-utils/api-config'; import { DefaultConfigs } from './typing-utils/default-config'; export declare const DEFAULT_CONFIG_PATH = "oven.configs.json5"; export declare const HTTP_METHODS: string[]; export declare const isHttpMethod: (method: string) => method is HttpMethod; export declare const DEFAULT_CONFIGS: DefaultConfigs; export declare const IGNORE_KEY = "#ignore";