From bdb063712c90e496f9cc8f4e82010945c1c32f9c Mon Sep 17 00:00:00 2001 From: Aramis Sennyey Date: Wed, 22 Feb 2023 18:53:22 -0500 Subject: [PATCH] Update API report. Signed-off-by: Aramis Sennyey --- plugins/openapi-router-common/api-report.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/plugins/openapi-router-common/api-report.md b/plugins/openapi-router-common/api-report.md index 6dbe59dc06..de82f1e5c7 100644 --- a/plugins/openapi-router-common/api-report.md +++ b/plugins/openapi-router-common/api-report.md @@ -62,6 +62,11 @@ export type ConvertAll = []> = T extends [ ? ConvertAll]> : R; +// @public +export type DeepWriteable = { + -readonly [P in keyof T]: DeepWriteable; +}; + // @public (undocumented) export type DocOperation< Doc extends RequiredDoc,