import { isTypeNumber } from 'type-guard-helpers'const test = 1 as unknown;if (isTypeNumber(test)) { test + 3;}
Generated using TypeDoc
Example