mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-07-05 18:04:48 +02:00
6 lines
76 B
TypeScript
6 lines
76 B
TypeScript
interface Dictionary<T> {
|
|
[key: string]: T;
|
|
}
|
|
|
|
export default Dictionary;
|