mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2024-12-29 00:08:20 +01:00
6 lines
76 B
TypeScript
6 lines
76 B
TypeScript
interface Dictionary<T> {
|
|
[key: string]: T;
|
|
}
|
|
|
|
export default Dictionary;
|