UNPKG

deleight

Version:

A library with 9 modules for writing more expressive web applications with traditional HTML, CSS and JavaScript.

6 lines (5 loc) 239 B
import { IKey } from "../types.js"; /** * Signature of most functions passed to the primitives in deleight/object */ export type IObjectCallable<T extends any = object, U extends any = any> = (object: T, key: IKey, ...args: any[]) => U;