Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 573 Bytes

File metadata and controls

25 lines (17 loc) · 573 Bytes

@utility/types

JSR Version JSR Score License

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