formatting

This commit is contained in:
Nicolás Serna 2022-07-02 16:04:22 -03:00
parent fd2cb00bde
commit 369a31fe02

View File

@ -1294,7 +1294,7 @@ export type AnythingBut<T> = Exclude<
*/
export type Id<T> = T extends infer U ? {
[K in keyof U]: U[K];
}
}
: never;
export type KeysWithUndefined<T> = {