Skip to main content
Module

x/tsafe/IsEmpty.ts

🔩 The missing TypeScript utils
Go to Latest
File
export type IsEmpty<T> = [keyof T] extends [never] ? true : false;