import { RuntypeBase, Static } from './runtype'; export function assertType( rt: TRuntypeBase, v: unknown, ): asserts v is Static { rt.assert(v); }