UNPKG

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