feat: version 2 beta
This commit is contained in:
5
types/utilities.ts
Normal file
5
types/utilities.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import type { Empty } from "./common.ts";
|
||||
|
||||
export type ExcludeEmptyFields<T> = {
|
||||
[K in keyof T as T[K] extends Empty ? never : K]: T[K];
|
||||
};
|
||||
Reference in New Issue
Block a user