Skip to main content
Module

x/enzastdlib/json5/mod.ts>JSON5Array

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 JSON5Array
Re-export
import { type JSON5Array } from "https://deno.land/x/enzastdlib@v0.0.4/json5/mod.ts";

Represents an array made up of JSON5 serializable members.

Examples

Example 1

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

const my_array = [42, 'Hello World'] satisfies JSON5Array;
definition: JSON5Types[]