@utility/types Collection of commonly used types Install deno add @utility/types Usage import { JSONObject } from "@utility/types/json"; let a: JSONObject = { "b": 1 }; // Looks fine in IDE let b: JSONObject = "testing"; // Shows error in IDE