function asserts.assertNotInstanceOfimport { asserts } from "https://deno.land/x/hex@v0.4.9/functions/tests/deps.ts"; const { assertNotInstanceOf } = asserts; assertNotInstanceOf<T extends AnyConstructor>(actual: unknown,unexpectedType: T,msg?,)Make an assertion that obj is not an instance of type. If so, then throw. Type ParametersT extends AnyConstructorParametersactual: unknownunexpectedType: Toptionalmsg = [UNSUPPORTED]