Files
phundrak.com-frontend/app/types/dictionary.ts

4 lines
53 B
TypeScript

export interface Dictionary<K, T> {
[key: K]: T;
}