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

4 lines
53 B
TypeScript
Raw Normal View History

2025-11-06 09:24:44 +01:00
export interface Dictionary<K, T> {
2025-11-11 19:12:21 +01:00
[key: K]: T;
2025-11-06 09:24:44 +01:00
}