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