Files
oneuptime/Common/Types/Dictionary.ts

4 lines
61 B
TypeScript

export default interface Dictionary<T> {
[x: string]: T;
}