hyperspace-desktop-client-w.../src/interfaces/utils.tsx

9 lines
154 B
TypeScript

/**
* A Generic dictionary with the value of a specific type.
*
* Keys _must_ be strings.
*/
export interface Dictionary<T> {
[Key: string]: T;
}