Document of migration.

The IHttpMigrateApplication interface is an application migrated from OpenAPI.IDocument OpenAPI document for supporting the OpenAPI generator libraries which compose RPC (Remote Procedure Call) functions from the OpenAPI.IOperation OpenAPI operations.

As the IHttpMigrateApplication and IHttpMigrateRoute have a lot of special stories, when you're developing OpenAPI generator library, please read their descriptions carefully including the description of properties.

Jeongho Nam - https://github.com/samchon

interface IHttpMigrateApplication {
    document: () => OpenApi.IDocument;
    errors: IHttpMigrateApplication.IError[];
    routes: IHttpMigrateRoute[];
}

Properties

document: () => OpenApi.IDocument

Source OpenAPI document.

List of errors occurred during the migration.

List of routes for migration.