UNPKG

@qntm-code/utils

Version:

A collection of useful utility functions with associated TypeScript types. All functions have been unit tested.

7 lines (6 loc) 108 B
/** * Reusable dictionary type for typed maps */ export interface Dictionary<T> { [key: string]: T; }