Add basic response factories and helpers

This commit is contained in:
2021-03-08 10:07:10 -06:00
parent 3acc1bc83e
commit a9ffa771dc
15 changed files with 365 additions and 10 deletions

View File

@@ -6,6 +6,7 @@ export * from './lifecycle/AppClass'
export * from './lifecycle/Unit'
export * from './http/kernel/module/InjectSessionHTTPModule'
export * from './http/kernel/module/MountActivatedRouteHTTPModule'
export * from './http/kernel/module/PersistSessionHTTPModule'
export * from './http/kernel/module/PoweredByHeaderInjectionHTTPModule'
export * from './http/kernel/module/SetSessionCookieHTTPModule'
@@ -17,6 +18,17 @@ export * from './http/kernel/HTTPCookieJar'
export * from './http/lifecycle/Request'
export * from './http/lifecycle/Response'
export * as api from './http/response/api'
export * from './http/response/DehydratedStateResponseFactory'
export * from './http/response/ErrorResponseFactory'
export * from './http/response/HTMLResponseFactory'
export * from './http/response/HTTPErrorResponseFactory'
export * from './http/response/JSONResponseFactory'
export * from './http/response/ResponseFactory'
export * from './http/response/StringResponseFactory'
export * from './http/response/TemporaryRedirectResponseFactory'
export * from './http/routing/ActivatedRoute'
export * from './http/routing/Route'
export * from './http/routing/RouteGroup'
@@ -25,6 +37,7 @@ export * from './http/session/SessionFactory'
export * from './http/session/MemorySession'
export * from './http/Controller'
export * from './http/HTTPError'
export * from './service/Canonical'
export * from './service/CanonicalInstantiable'