UNPKG

airship-server

Version:

Airship is a framework for Node.JS & TypeScript that helps you to write big, scalable and maintainable API servers.

11 lines (10 loc) 308 B
import {ASRequest} from './entity/ASRequest' import {ASResponse} from './entity/ASResponse' export abstract class RequestsProvider { public abstract getRequests( callback: ( request: ASRequest, answerRequest: (response: ASResponse) => void ) => void ): void }