Skip to main content
Module

x/enzastdlib/json5/mod.ts>JSON5TypeNames

enzastdlib is a set of TypeScript modules that follow a common design API philosophy aiming at sane defaults and ease-of-use targeting the Deno TypeScript runtime.
Latest
type alias JSON5TypeNames
Re-export
import { type JSON5TypeNames } from "https://deno.land/x/enzastdlib@v0.0.4/json5/mod.ts";

Represents a union of JavaScript type name literals supported by JSON5.

Examples

Example 1

import type { JSON5TypeNames } from 'https://deno.land/x/enzastdlib/json5/mod.ts';

const type_name = 'string' satisfies JSON5TypeNames;
definition: ValueOf<JSON5_TYPE_NAMES>