import { assertInstanceOf } from "https://dotland.deno.dev/std@0.224.0/assert/assert_instance_of.ts";
Make an assertion that obj
is an instance of type
.
If not then throw.
Type Parameters
T extends AnyConstructor
Returns
asserts actual is GetConstructorType<T>