Skip to main content
Module

x/lunchbox/src/types.ts>EmptyObject

Component Library 🍱 for Deno πŸ¦• Fresh πŸ‹
Latest
type alias EmptyObject
import { type EmptyObject } from "https://deno.land/x/lunchbox@v0.3.15/src/types.ts";

This type is a shorthand of Record<string | number | symbol, never> that deno-lint(ban-types) recommends as the correct way to express the type of an empty object..

definition: Record<string | number | symbol, never>