actionhero
Version:
The reusable, scalable, and quick node.js API server for stateless and stateful applications
14 lines (13 loc) • 346 B
TypeScript
import { Initializer } from "../index";
export interface ParamsApi {
globalSafeParams?: Array<string>;
postVariables: Array<string>;
buildPostVariables?: Function;
}
/**
* Collects and formats allowed params for this server.
*/
export declare class Params extends Initializer {
constructor();
initialize(): Promise<void>;
}