Skip to main content
Module

x/enzastdlib/collections/object.ts>UnknownObject

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

Represents an Object type that has unknown properties.

Examples

Example 1

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

type X = UnknownObject; // `{ [x: string]: unknown; [x: number]: unknown; [x: symbol]: unknown }`
definition: Record<PropertyKey, unknown>