UNPKG

ts-json-schema-generator

Version:

Generate JSON schema from your Typescript sources

7 lines (5 loc) 193 B
import type { BaseType } from "../Type/BaseType.js"; import { NeverType } from "../Type/NeverType.js"; export function notNever(x: BaseType): boolean { return !(x instanceof NeverType); }