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