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