api report

Signed-off-by: Johan Haals <johan.haals@gmail.com>
This commit is contained in:
Johan Haals
2021-11-09 09:49:55 +01:00
parent e059aea7b9
commit de527c6e33
+2 -2
View File
@@ -142,7 +142,7 @@ export type ApiRefConfig = {
description?: string;
};
// @public
// @public @deprecated
export type ApiRefsToTypes<
T extends {
[key in string]: ApiRef<unknown>;
@@ -151,7 +151,7 @@ export type ApiRefsToTypes<
[key in keyof T]: ApiRefType<T[key]>;
};
// @public
// @public @deprecated
export type ApiRefType<T> = T extends ApiRef<infer U> ? U : never;
// @public