UNPKG

@chubbyjs/psr-http-factory

Version:

Common Http-message factory Interface (PHP FIG PSR-17).

6 lines (5 loc) 239 B
import ResponseInterface from '@chubbyjs/psr-http-message/dist/ResponseInterface'; interface ResponseFactoryInterface { createResponse(code: number, reasonPhrase?: string): ResponseInterface; } export default ResponseFactoryInterface;