Update API report.

Signed-off-by: Aramis Sennyey <sennyeya@amazon.com>
This commit is contained in:
Aramis Sennyey
2023-02-22 18:53:22 -05:00
committed by Fredrik Adelöw
parent 57cd529ba9
commit bdb063712c
@@ -62,6 +62,11 @@ export type ConvertAll<T, R extends ReadonlyArray<unknown> = []> = T extends [
? ConvertAll<Rest, [...R, FromSchema<First>]>
: R;
// @public
export type DeepWriteable<T> = {
-readonly [P in keyof T]: DeepWriteable<T[P]>;
};
// @public (undocumented)
export type DocOperation<
Doc extends RequiredDoc,