Skip to main content
Module

x/tsafe/Not.ts

🔩 The missing TypeScript utils
Go to Latest
File
/** https://docs.tsafe.dev/main/not */export type Not<B extends boolean> = B extends true ? false : true;