UNPKG

529 BTypeScriptView Raw
1import { Express } from 'express';
2import { Application as FeathersApplication } from '@feathersjs/feathers';
3import { Application } from './declarations';
4export { default as original, static, static as serveStatic, json, raw, text, urlencoded, query } from 'express';
5export * from './authentication';
6export * from './declarations';
7export * from './handlers';
8export * from './rest';
9export default function feathersExpress<S = any, C = any>(feathersApp?: FeathersApplication<S, C>, expressApp?: Express): Application<S, C>;