@cortexql/core
Version:
A RESTful API framework for your apps based on GraphQL type system.
11 lines (10 loc) • 318 B
TypeScript
/// <reference types="node" />
import { HookActionSeries } from '@erect/hook';
import { Server } from 'http';
import { Application } from '../server/Application';
export interface Params {
api: Application;
httpServer: Server;
}
declare const _default: HookActionSeries<void, Params>;
export default _default;