簡體   English   中英

如何創建一個類型 function 來檢查 TypeScript 中的類型是否為空 object?

[英]How to create a type function that checks whether a type is empty object in TypeScript?

是否可以創建一個類型 function IsEmpty使得:

type a = IsEmpty<{}> // true
type b = IsEmpty<{x: 1}> // never
type IsEmpty<T> = {} extends T ? true : never;

條件類型

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM