diff --git a/packages/backend-openapi-utils/report-tests.api.md b/packages/backend-openapi-utils/report-tests.api.md new file mode 100644 index 0000000000..471ff5a3c1 --- /dev/null +++ b/packages/backend-openapi-utils/report-tests.api.md @@ -0,0 +1,18 @@ +## API Report File for "@backstage/backend-openapi-utils" + +> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). + +```ts +/// + +import { Express as Express_2 } from 'express'; +import { Server } from 'http'; + +// @public +export const wrapInOpenApiTestServer: (app: Express_2) => Server | Express_2; + +// @public +export function wrapServer(app: Express_2): Promise; + +// (No @packageDocumentation comment for this package) +``` diff --git a/packages/backend-openapi-utils/report.api.md b/packages/backend-openapi-utils/report.api.md index 22913eb321..9d8b8e975e 100644 --- a/packages/backend-openapi-utils/report.api.md +++ b/packages/backend-openapi-utils/report.api.md @@ -3,11 +3,8 @@ > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). ```ts -/// - import type { ContentObject } from 'openapi3-ts'; import type core from 'express-serve-static-core'; -import { Express as Express_2 } from 'express'; import { FromSchema } from 'json-schema-to-ts'; import { JSONSchema } from 'json-schema-to-ts'; import { middleware } from 'express-openapi-validator'; @@ -19,7 +16,6 @@ import { RequestHandler } from 'express'; import type { ResponseObject } from 'openapi3-ts'; import { Router } from 'express'; import type { SchemaObject } from 'openapi3-ts'; -import { Server } from 'http'; // @public export interface ApiRouter extends Router { @@ -925,10 +921,4 @@ type UnknownIfNever

= [P] extends [never] ? unknown : P; // @public type ValueOf = T[keyof T]; - -// @public -export const wrapInOpenApiTestServer: (app: Express_2) => Server | Express_2; - -// @public -export function wrapServer(app: Express_2): Promise; ```