UNPKG

es-toolkit

Version:

A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.

10 lines (7 loc) 222 B
import * as compat from './compat.js'; type ToolkitFn = (value: any) => any; type Compat = typeof compat; interface Toolkit extends ToolkitFn, Compat { } declare const toolkit: Toolkit; export { type Toolkit, toolkit };