1 | import Koa from 'koa';
|
2 | import { Application as FeathersApplication } from '@feathersjs/feathers';
|
3 | import { koaBody as bodyParser } from 'koa-body';
|
4 | import cors from '@koa/cors';
|
5 | import serveStatic from 'koa-static';
|
6 | import { Application } from './declarations';
|
7 | export { Koa, bodyParser, cors, serveStatic };
|
8 | export * from './authentication';
|
9 | export * from './declarations';
|
10 | export * from './handlers';
|
11 | export * from './rest';
|
12 | export declare function koa<S = any, C = any>(feathersApp?: FeathersApplication<S, C>, koaApp?: Koa): Application<S, C>;
|