mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
4 lines
61 B
TypeScript
4 lines
61 B
TypeScript
export default interface Dictionary<T> {
|
|
[x: string]: T;
|
|
}
|