UNPKG

ts-neverfalse

Version:

Automated error coalescing and aggregation to simplify advanced type evaluations in Typescript

19 lines (17 loc) 276 B
interface NeverMarked { _NEVER: 1; M: string[]; T?: any; } interface FalseMarked { _FALSE: 1; M: string[]; T?: any; } interface Marked { _NEVER?: 1; _FALSE?: 1; M: string[]; T?: any; } export type { FalseMarked, Marked, NeverMarked };