Appearance
function Dsp.isDsp(value: unknown): value is Dsp;
Checks whether the provided value is a Dsp instance.
value
Dsp
import { Dsp } from "@monstermann/dsp"; const dsp = Dsp.create(); Dsp.isDsp(dsp); // true