@chubbyjs/psr-http-factory
Version:
Common Http-message factory Interface (PHP FIG PSR-17).
8 lines (7 loc) • 424 B
TypeScript
import { Method } from '@chubbyjs/psr-http-message/dist/RequestInterface';
import ServerRequestInterface from '@chubbyjs/psr-http-message/dist/ServerRequestInterface';
import UriInterface from '@chubbyjs/psr-http-message/dist/UriInterface';
interface ServerRequestFactoryInterface {
createServerRequest(method: Method, uri: string | UriInterface): ServerRequestInterface;
}
export default ServerRequestFactoryInterface;