1 | import { RequestHandler } from 'express';
|
2 | import { AuthenticationSettings } from './authentication';
|
3 | import { Application } from './declarations';
|
4 | export declare const formatter: RequestHandler;
|
5 | export type RestOptions = {
|
6 | formatter?: RequestHandler;
|
7 | authentication?: AuthenticationSettings;
|
8 | };
|
9 | export declare const rest: (options?: RestOptions | RequestHandler) => (app: Application) => void;
|