Skip to main content
Module

x/enzastdlib/json5/types.ts>JSON5Object

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

Represents an array made up of JSON5 serializable members.

Examples

Example 1

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

const my_object = {
    hello: 'World!',
} satisfies JSON5Object;
definition: { [index: string]: JSON5Types | undefined; }